добавил еще одну переменную в код лабораторной работы

This commit is contained in:
alexa 2024-10-24 08:41:24 +04:00
parent 32522ef0cc
commit 08fc80db5a

View File

@ -2,14 +2,14 @@
#include <Windows.h> #include <Windows.h>
void main() { void main() {
int v1, v2, v3, v4, v5, v6; int v1, v2, v3, v4, v5, v6, v7;
int max; int max;
SetConsoleCP(1251); SetConsoleCP(1251);
SetConsoleOutputCP(1251); SetConsoleOutputCP(1251);
printf("Введите 5 чисел: "); printf("Введите 7 чисел: ");
scanf_s("%d%d%d%d%d", &v1, &v2, &v3, &v4, &v5, &v6); scanf_s("%d%d%d%d%d", &v1, &v2, &v3, &v4, &v5, &v6, &v7);
max = v1; max = v1;
if (v2 > max) { if (v2 > max) {
@ -27,6 +27,9 @@ void main() {
if (v6 > max) { if (v6 > max) {
max = v6; max = v6;
} }
if (v7 > max) {
max = v7;
}
printf("max = %d", max); printf("max = %d", max);
} }