Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
c16146ce23 | |||
25370da77b | |||
bdc783c060 | |||
8581c27008 |
49
main.c
49
main.c
@ -1,4 +1,47 @@
|
||||
void main() {
|
||||
printf("Hello")
|
||||
include <stdio.h>
|
||||
#include <Windows.h>
|
||||
|
||||
int main() {
|
||||
int t;
|
||||
SetConsoleCP(1251);
|
||||
SetConsoleOutputCP(1251);
|
||||
printf("Ââåäèòå òåìïåðàòóðó:");//Óëüÿîâñê ñåíòÿáðü
|
||||
scanf_s("%d", &t);
|
||||
|
||||
if (t < 10) {
|
||||
printf("Ìîðîç");
|
||||
}
|
||||
//com
|
||||
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("Óæàñ êàê äîðîãî");
|
||||
// }
|
||||
//}
|
||||
|
Loading…
Reference in New Issue
Block a user