This commit is contained in:
Kozar 2024-02-28 14:17:46 +01:00
parent 6fcf84b4ff
commit 817eaed43f
2 changed files with 6 additions and 1 deletions

Binary file not shown.

View File

@ -28,7 +28,12 @@ int main(){
} }
} }
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n", winner_index + 1, max_num); printf("Výherca je súťažiaci");
for (int i = 0; i < count; i++) {
if (field[i] == max_num) {
printf("%d, ktorý vypil %d pohárov.\n", i + 1, max_num);
}
}
return 0; return 0;
} }