funguje
This commit is contained in:
parent
82edc32fdb
commit
550979778e
@ -9,7 +9,7 @@ int main(){
|
||||
|
||||
int pole[VELKOST_POLA];
|
||||
memset(pole,0,VELKOST_POLA*(sizeof(int)));
|
||||
|
||||
int max=0;
|
||||
|
||||
int max_hodnota=0;
|
||||
int idx=0;
|
||||
@ -20,6 +20,7 @@ int main(){
|
||||
}
|
||||
pole[idx]=value;
|
||||
if (pole[idx] > max_hodnota){
|
||||
max=idx;
|
||||
max_hodnota = pole[idx];
|
||||
}
|
||||
idx++;
|
||||
@ -33,12 +34,12 @@ int main(){
|
||||
|
||||
for(int i=0; i<VELKOST_POLA;i++){
|
||||
if(pole[i]>0){
|
||||
printf("Súťažiaci č. %d vypil %d pohárov.\n", i, pole[i]);
|
||||
printf("Súťažiaci č. %d vypil %d pohárov.\n", i+1, pole[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//printf("%d\n", max_hodnota);
|
||||
printf("Súťažiaci č. %d vypil %d pohárov.\n",max+1, max_hodnota);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user