fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var x = -Math.Pow(3, 2);
  8. var y = Math.Pow(-3, 2);
  9. Console.WriteLine($"x is {x}");
  10. Console.WriteLine($"y is {y}");
  11. }
  12. }
  13.  
Success #stdin #stdout 0.08s 32744KB
stdin
Standard input is empty
stdout
x is -9
y is 9