DSA
This commit is contained in:
parent
e78f1b1450
commit
aa4e55d2e9
BIN
du2/program
BIN
du2/program
Binary file not shown.
@ -3,8 +3,7 @@
|
|||||||
|
|
||||||
int main(){
|
int main(){
|
||||||
int results[VELKOST_POLA];
|
int results[VELKOST_POLA];
|
||||||
//int max;
|
int max;
|
||||||
//int value = 0;
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
int a = 0;
|
int a = 0;
|
||||||
while(1){
|
while(1){
|
||||||
@ -12,9 +11,9 @@ int main(){
|
|||||||
int r = scanf("%d",&value);
|
int r = scanf("%d",&value);
|
||||||
if (r == 1){
|
if (r == 1){
|
||||||
results[i] = value;
|
results[i] = value;
|
||||||
//max = results[0];
|
max = results[0];
|
||||||
/*if(max < results[i])
|
if(max < results[i])
|
||||||
max = results[i];*/
|
max = 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");
|
||||||
@ -25,8 +24,7 @@ int main(){
|
|||||||
do{
|
do{
|
||||||
printf("Súťažiaci č. %d vypil %d pohárov.\n",a+1,results[a]);
|
printf("Súťažiaci č. %d vypil %d pohárov.\n",a+1,results[a]);
|
||||||
if(a == i - 1){
|
if(a == i - 1){
|
||||||
//printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n", a+1, results[a]);
|
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",a+1,results[a]);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
a++;
|
a++;
|
||||||
|
Loading…
Reference in New Issue
Block a user