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 results[VELKOST_POLA];
|
||||||
int max;
|
int max;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
int first;
|
|
||||||
//int a = 0;
|
|
||||||
while(1){
|
while(1){
|
||||||
int value = 0;
|
int value = 0;
|
||||||
int r = scanf("%d",&value);
|
int r = scanf("%d",&value);
|
||||||
@ -14,16 +12,15 @@ int main(){
|
|||||||
results[i] = value;
|
results[i] = value;
|
||||||
max = results[0];
|
max = results[0];
|
||||||
if(max < results[i]){
|
if(max < results[i]){
|
||||||
max = results[i];
|
printf("Súťažiaci č. %d vypil %d pohárov.\n",i+1,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++;
|
i++;
|
||||||
}else if(i == 0){
|
}else if(i == 0){
|
||||||
printf("Chyba: Málo platných hodnôt.\n");
|
printf("Chyba: Málo platných hodnôt.\n");
|
||||||
}else{
|
}else{
|
||||||
first = i;
|
/*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;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user