G
This commit is contained in:
parent
6fcf84b4ff
commit
817eaed43f
Binary file not shown.
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user