Ну незнаю Вот пример на C#: int temp; temp = Convert.ToInt32(Console.ReadLine()); if (temp <= 0) { Console.WriteLine("На улице холодно, оденься теплей"); } if (temp > 0 && temp < 25) { Console.WriteLine("На илице прохрадно"); } if (temp > 25) { Console.WriteLine("На улице тепло"); }
int temp;
temp = Convert.ToInt32(Console.ReadLine());
if (temp <= 0)
{
Console.WriteLine("На улице холодно, оденься теплей");
}
if (temp > 0 && temp < 25)
{
Console.WriteLine("На илице прохрадно");
}
if (temp > 25)
{
Console.WriteLine("На улице тепло");
}