28 lines
472 B
C++
28 lines
472 B
C++
#include <stdio.h>
|
|
#include <windows.h>
|
|
void main()
|
|
{
|
|
int a;
|
|
SetConsoleCP(1251);
|
|
SetConsoleOutputCP(1251);
|
|
printf("Ульяновск\n");
|
|
printf("Лето\n");
|
|
printf("Введите температуру\n");
|
|
scanf_s("%d", &a);
|
|
if (a > 0 and a < 10)
|
|
{
|
|
printf("Холодно");
|
|
}
|
|
if (a >= 10 and a < 15)
|
|
{
|
|
printf("Прохладно");
|
|
}
|
|
if (a >= 15 and a < 25)
|
|
{
|
|
printf("Тепло");
|
|
}
|
|
if (a >= 25 and a < 35)
|
|
{
|
|
printf("Жарко");
|
|
}
|
|
} |