Update 'cv2/program.c'

This commit is contained in:
Tamáš 2024-02-29 09:19:18 +00:00
parent aef5c8ee4d
commit 00ece73bf7

View File

@ -4,14 +4,14 @@
int main() {
int results[50], count = 0, num, maxPoharov = 0;
while (scanf("%d", &num) == 1) {
while (count < 50 && scanf("%d", &num) == 1) {
// Kontrola platnosti vstupu
if (num < 1 || num > 50) {
printf("Chyba: Neplatné číslo.\n");
return 0;
}
if (count >= 50) {
break;
printf("Chyba: Neplatné číslo %d. Prosím, zadajte číslo v rozsahu 1 až 50.\n", num);
continue;
}
results[count++] = num;
}
@ -27,9 +27,10 @@ int main() {
}
}
for (int i = 0; i < count; i++) {
if (results[i] == maxPoharov) {
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n", i + 1, maxPoharov);
printf("Výherca je súťažiaci %d, ktorý vypil %d pohárov.\n", i + 1, maxPoharov);
}
}