This commit is contained in:
Andrii Hermaniuk 2022-03-10 18:24:43 +01:00
parent 5ed55cd17a
commit eff25efc58

View File

@ -10,6 +10,8 @@ int main(){
int pole[VELKOST_POLA];
memset(pole,0,VELKOST_POLA*(sizeof(int)));
int max_hodnota=0;
int idx=0;
while (1){
int r=scanf("%d",&value);
@ -17,6 +19,9 @@ int main(){
break;
}
pole[idx]=value;
if (pole[idx] > max_hodnota){
max_hodnota = pole[i];
}
idx++;
value++;
}
@ -26,13 +31,12 @@ int main(){
return 0;
}
int max_hodnota=0;
for(int i=0; i<VELKOST_POLA; i++){
if (pole[i] > max_hodnota){
max_hodnota = pole[i];
}
for(int i=0; i<VELKOST_POLA;i++){
printf("Súťažiaci č. %d vypil %d pohárov.", i, pole[i]);
}
printf("%d\n", max_hodnota);
//printf("%d\n", max_hodnota);
return 0;
}