1/main.c
2024-11-25 18:18:44 +04:00

25 lines
481 B
C

/ çàäà÷à 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("Óæàñ êàê äîðîãî");
// }
//}