This commit is contained in:
Patrik Seman 2023-03-04 12:13:35 +01:00
parent 5a43c96616
commit ceac9443eb
2 changed files with 18 additions and 17 deletions

Binary file not shown.

View File

@ -5,13 +5,12 @@ int main(){
int i=0;
int pole[VELKOST_POLA];
int max_hodnota=0;
int value=0;
int max_hrac=0;
int r=0;
while(i<VELKOST_POLA){
value=0;
int r = scanf("%d",&r);
scanf("%d",&r);
pole[i]=r;
if(r >= 0 && r <= 9999){
if(r==1){
i++;
printf("Súťažiaci č. %d vypil %d pohárov.\n", i,r);
@ -21,9 +20,11 @@ while(i<VELKOST_POLA){
}
if(pole[i] > max_hodnota){
max_hodnota = pole[i];
max_hrac= 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",max_hrac,max_hodnota);
return 0;
}