OAIP_Mirror/geany/lab3-2.c

27 lines
322 B
C
Raw Normal View History

2024-10-21 17:04:00 +04:00
#include <stdio.h>
#include <Windows.h>
int main() {
int max, v1, v2, v3;
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
printf("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 3 <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>: ");
scanf_s("%d%d%d", &v1, &v2, &v3);
max = v1;
if (v2 > max) {
max = v2;
}
if (v3 > max) {
max = v3;
}
printf("max = %d", max);
return 0;
}