program.c

This commit is contained in:
Patrik Seman 2023-03-02 16:22:34 +01:00
parent 254a8463db
commit 6ad8720c3e
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -20,10 +20,10 @@ while(i<VELKOST_POLA){
if(pole[i] > max_hodnota){
max_hodnota = pole[i];
}
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov." i,i);
}
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.", i,i);
return 0;
}