48 lines
846 B
C
48 lines
846 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("Æàðêî");
|
|
}
|
|
}
|
|
/ çàäà÷à 6
|
|
//#include <stdio.h>
|
|
//#include <Windows.h>
|
|
//
|
|
//int main() {
|
|
// int price;
|
|
// SetConsoleCP(1251);
|
|
// SetConsoleOutputCP(1251);
|
|
// printf("Ââåäèòå ñòîèìîñòü âàç 2114:");
|
|
// scanf_s("%d", &price);
|
|
//
|
|
// if (price < 120000) {
|
|
// printf("Äåøåâî");
|
|
// }
|
|
// if ((120000 <= price) && (price < 180000)) {
|
|
// printf("Íîðìàëüíî");
|
|
// }
|
|
// if ((180000 <= price) && (price < 230000)) {
|
|
// printf("Äîðîãî");
|
|
// }
|
|
// if (price >= 230000) {
|
|
// printf("Óæàñ êàê äîðîãî");
|
|
// }
|
|
//}
|