This commit is contained in:
Patrik Seman 2023-03-04 11:37:00 +01:00
parent 5641aa4961
commit 070dd51927
2 changed files with 4 additions and 3 deletions

Binary file not shown.

View File

@ -6,7 +6,7 @@ int main(){
int pole[VELKOST_POLA];
int max_hodnota=0;
int value=0;
int r;
int r=0;
while(i<VELKOST_POLA){
value=0;
int r = scanf("%d",&value);
@ -20,9 +20,10 @@ while(i<VELKOST_POLA){
break;
}
if(pole[i] > max_hodnota){
max_hodnota = pole[i];
max_hodnota = pole[i];
}
}
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n", i,max_hodnota);
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n", i,max_hodnota);
}