wingman007

KrushkovTask53

Sep 25th, 2025
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.15 KB | None | 0 0
  1. double x = 2.3;
  2.  
  3. if (x < 0)
  4. {
  5.     Console.WriteLine(-1);
  6. }
  7. else if (x == 0)
  8. {
  9.     Console.WriteLine(0);
  10. }
  11. else
  12. {
  13.     Console.WriteLine(1);
  14. }
  15.  
  16.  
Advertisement