3 и 4. создал вторую ветку, прописал логику следующей лабораторной по ОА и П

This commit is contained in:
alexa 2024-11-20 23:36:29 +04:00
parent 6fd21978a6
commit dd16a3269f

View File

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