добавил в код лабораторной работы еще одну переменную
This commit is contained in:
parent
4c8d3be8a2
commit
32522ef0cc
@ -2,14 +2,14 @@
|
|||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
int v1, v2, v3, v4, v5;
|
int v1, v2, v3, v4, v5, v6;
|
||||||
int max;
|
int max;
|
||||||
|
|
||||||
SetConsoleCP(1251);
|
SetConsoleCP(1251);
|
||||||
SetConsoleOutputCP(1251);
|
SetConsoleOutputCP(1251);
|
||||||
|
|
||||||
printf("Введите 5 чисел: ");
|
printf("Введите 5 чисел: ");
|
||||||
scanf_s("%d%d%d%d%d", &v1, &v2, &v3, &v4, &v5);
|
scanf_s("%d%d%d%d%d", &v1, &v2, &v3, &v4, &v5, &v6);
|
||||||
|
|
||||||
max = v1;
|
max = v1;
|
||||||
if (v2 > max) {
|
if (v2 > max) {
|
||||||
@ -24,6 +24,9 @@ void main() {
|
|||||||
if (v5 > max) {
|
if (v5 > max) {
|
||||||
max = v5;
|
max = v5;
|
||||||
}
|
}
|
||||||
|
if (v6 > max) {
|
||||||
|
max = v6;
|
||||||
|
}
|
||||||
printf("max = %d", max);
|
printf("max = %d", max);
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user