Advertisement
AmidamaruZXC

Untitled

Feb 7th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Task2959
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             double x = double.Parse(Console.ReadLine()); // Считываем число
  14.             if (x > 0) // Проверяем условия из задачи
  15.                 Console.WriteLine(1);
  16.             else if (x < 0)
  17.                 Console.WriteLine(-1);
  18.             else
  19.                 Console.WriteLine(0);
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement