23 lines
364 B
C
23 lines
364 B
C
include <stdio.h>
|
|
#include <Windows.h>
|
|
|
|
int main() {
|
|
int t;
|
|
SetConsoleCP(1251);
|
|
SetConsoleOutputCP(1251);
|
|
printf("Ââåäèòå òåìïåðàòóðó:");//Óëüÿîâñê ñåíòÿáðü
|
|
scanf_s("%d", &t);
|
|
|
|
if (t < 10) {
|
|
printf("Ìîðîç");
|
|
}
|
|
if ((10 <= t) && (t < 15)) {
|
|
printf("Õîëîäíî");
|
|
}
|
|
if ((15 <= t) && (t < 26)) {
|
|
printf("Òåïëî");
|
|
}
|
|
if (t >= 26) {
|
|
printf("Æàðêî");
|
|
}
|
|
} |