Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- double x = 2.3;
- if (x < 0)
- {
- Console.WriteLine(-1);
- }
- else if (x == 0)
- {
- Console.WriteLine(0);
- }
- else
- {
- Console.WriteLine(1);
- }
Advertisement