fork download
  1. using System;
  2.  
  3. namespace ConsoleApplication30
  4. {
  5. class Program
  6. {
  7. static void Main()
  8. {
  9. Console.WriteLine("Math.Pow = {0}", Math.Pow(256,3));
  10. Console.WriteLine("SHL = {0}", 1 << 24);
  11. Console.WriteLine("Zero = {0}", 0);
  12. Console.ReadKey();
  13. }
  14. }
  15. }
  16.  
Success #stdin #stdout 0.04s 33888KB
stdin
Standard input is empty
stdout
Math.Pow = 16777216
SHL = 16777216
Zero = 0