This commit is contained in:
Yaroslav Orlianskyi 2022-03-09 14:35:57 +01:00
parent 4702d0e22e
commit d42b2fd995
2 changed files with 4 additions and 5 deletions

Binary file not shown.

View File

@ -3,24 +3,23 @@
int main(){
int results[VELKOST_POLA];
int max;
int max = 0;
int i = 0;
while(1){
int value = 0;
int r = scanf("%d",&value);
if (r == 1){
results[i] = value;
max = results[0];
if(max < results[i]){
printf("Súťažiaci č. %d vypil %d pohárov.\n",i+1,results[i]);
//printf("Súťažiaci č. %d vypil %d pohárov.\n",i+1,results[i]);
max = results[i];
}
printf("Súťažiaci č. %d vypil %d pohárov.\n",i+1,results[i]);
i++;
}else if(i == 0){
printf("Chyba: Málo platných hodnôt.\n");
}else{
/*first = i;
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",i,max);*/
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",i,max);
break;
}
}