Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
c16146ce23 | |||
25370da77b | |||
8581c27008 |
23
main.c
23
main.c
@ -1,3 +1,26 @@
|
||||
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("Æàðêî");
|
||||
}
|
||||
}
|
||||
/ çàäà÷à 6
|
||||
//#include <stdio.h>
|
||||
//#include <Windows.h>
|
||||
|
Loading…
Reference in New Issue
Block a user