ASD
This commit is contained in:
parent
54a2678e3d
commit
4702d0e22e
BIN
du2/program
BIN
du2/program
Binary file not shown.
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user