This commit is contained in:
Yaroslav Orlianskyi 2022-03-09 14:14:04 +01:00
parent e78f1b1450
commit aa4e55d2e9
2 changed files with 5 additions and 7 deletions

Binary file not shown.

View File

@ -3,8 +3,7 @@
int main(){
int results[VELKOST_POLA];
//int max;
//int value = 0;
int max;
int i = 0;
int a = 0;
while(1){
@ -12,9 +11,9 @@ int main(){
int r = scanf("%d",&value);
if (r == 1){
results[i] = value;
//max = results[0];
/*if(max < results[i])
max = results[i];*/
max = results[0];
if(max < results[i])
max = results[i];
i++;
}else if(i == 0){
printf("Chyba: Málo platných hodnôt.\n");
@ -25,8 +24,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, results[a]);
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);
break;
}
a++;