Update 'cv2/program.c'

This commit is contained in:
Tamáš 2024-02-29 09:22:06 +00:00
parent 00ece73bf7
commit 4f4179e0ab

View File

@ -4,12 +4,11 @@
int main() { int main() {
int results[50], count = 0, num, maxPoharov = 0; int results[50], count = 0, num, maxPoharov = 0;
while (count < 50 && scanf("%d", &num) == 1) { while (count < 50 && scanf("%d", &num) == 1) {
// Kontrola platnosti vstupu // Kontrola platnosti vstupu
if (num < 1 || num > 50) { if (num < 1 || num > 50) {
printf("Chyba: Neplatné číslo %d. Prosím, zadajte číslo v rozsahu 1 až 50.\n", num); printf("Chyba: Neplatné číslo %d. Prosím, zadajte číslo v rozsahu 1 až 50.\n", num);
continue; continue;
} }
results[count++] = num; results[count++] = num;
@ -27,10 +26,10 @@ int main() {
} }
} }
for (int i = 0; i < count; i++) { for (int i = 0; i < count; i++) {
if (results[i] == maxPoharov) { 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);
} }
} }