3 и 4. создал вторую ветку, прописал логику следующей лабораторной по ОА и П
This commit is contained in:
parent
6fd21978a6
commit
dd16a3269f
@ -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");
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user