Написал на C# но в принципе код очень простой поэтому сможешь переписать на любой язык)
Console.WriteLine("Введите А"); int a = Convert.ToInt16(Console.ReadLine()); if (a >0) { Console.WriteLine("---------------------------"); Console.WriteLine("Число "+a+" положительное"); } if (a < 0) { Console.WriteLine("---------------------------"); Console.WriteLine("Число " + a + " отрицательное"); } if (a == 0) { Console.WriteLine("---------------------------"); Console.WriteLine("Вы ввели 0"); } Console.ReadLine();
Console.WriteLine("Введите А");
int a = Convert.ToInt16(Console.ReadLine());
if (a >0)
{ Console.WriteLine("---------------------------");
Console.WriteLine("Число "+a+" положительное"); }
if (a < 0) { Console.WriteLine("---------------------------");
Console.WriteLine("Число " + a + " отрицательное"); }
if (a == 0) { Console.WriteLine("---------------------------");
Console.WriteLine("Вы ввели 0"); }
Console.ReadLine();