Compare commits

...

3 Commits

View File

@ -181,28 +181,23 @@ INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
#include <stdio.h> #include <stdio.h>
#include <Windows.h> #include <Windows.h>
void main() { void main() {
int temperature; int v1, v2, v3;
int max;
SetConsoleCP(1251); SetConsoleCP(1251);
SetConsoleOutputCP(1251); SetConsoleOutputCP(1251);
printf("Введите температуру в Симферополе осенью: "); printf("Введите 3 числа: ");
scanf_s("%d", &temperature); scanf_s("%d%d%d", &v1, &v2, &v3);
if ((temperature < 10 && temperature >= 0)) { max = v1;
printf("Мороз\n"); if (v2 > max) {
max = v2;
} }
else if (temperature < 20 && temperature >= 10) { if (v3 > max) {
printf("Холодно\n"); max = v3;
}
else if (temperature < 30 && temperature >= 20) {
printf("Тепло\n");
}
else if (temperature >= 30) {
printf("Жарко\n");
} }
printf("max = %d", max);
} }