ASD
This commit is contained in:
parent
aa4e55d2e9
commit
b1a44aefd9
BIN
du2/program
BIN
du2/program
Binary file not shown.
@ -3,17 +3,19 @@
|
||||
|
||||
int main(){
|
||||
int results[VELKOST_POLA];
|
||||
int max;
|
||||
int max = results[0];
|
||||
int i = 0;
|
||||
int first;
|
||||
int a = 0;
|
||||
while(1){
|
||||
int value = 0;
|
||||
int r = scanf("%d",&value);
|
||||
if (r == 1){
|
||||
results[i] = value;
|
||||
max = results[0];
|
||||
if(max < results[i])
|
||||
if(max < results[i]){
|
||||
max = results[i];
|
||||
first = i + 1;
|
||||
}
|
||||
i++;
|
||||
}else if(i == 0){
|
||||
printf("Chyba: Málo platných hodnôt.\n");
|
||||
@ -24,7 +26,7 @@ int main(){
|
||||
do{
|
||||
printf("Súťažiaci č. %d vypil %d pohárov.\n",a+1,results[a]);
|
||||
if(a == i - 1){
|
||||
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",a+1,max);
|
||||
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",first,max);
|
||||
break;
|
||||
}
|
||||
a++;
|
||||
|
Loading…
Reference in New Issue
Block a user