This commit is contained in:
Yaroslav Orlianskyi 2022-03-09 14:33:23 +01:00
parent 54a2678e3d
commit 4702d0e22e
2 changed files with 3 additions and 6 deletions

Binary file not shown.

View File

@ -5,8 +5,6 @@ int main(){
int results[VELKOST_POLA];
int max;
int i = 0;
int first;
//int a = 0;
while(1){
int value = 0;
int r = scanf("%d",&value);
@ -14,16 +12,15 @@ int main(){
results[i] = value;
max = results[0];
if(max < results[i]){
max = results[i];
first = i + 1;
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]);
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);
/*first = i;
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",i,max);*/
break;
}
}