35 lines
758 B
C
35 lines
758 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#define VELKOST_POLA 52
|
|
|
|
|
|
|
|
int main(){
|
|
int drinks_counter[VELKOST_POLA];
|
|
memset(drinks_counter,0,VELKOST_POLA * sizeof(int));
|
|
int i=0;
|
|
while(i<VELKOST_POLA){
|
|
scanf("%d",&drinks_counter[i]);
|
|
if(drinks_counter[i]<1){
|
|
if(i<1){
|
|
printf("Chyba: Málo platných hodnôt.\n");
|
|
}
|
|
break;
|
|
}
|
|
i++;
|
|
}
|
|
int max=0;
|
|
for(int j=0;j<i;j++){
|
|
printf("Súťažiaci č. %d vypil %d pohárov.\n",j+1,drinks_counter[j]);
|
|
if(drinks_counter[j]>max){
|
|
max=drinks_counter[j];
|
|
}
|
|
}
|
|
for(int j=0;j<i;j++){
|
|
if(drinks_counter[j]==max){
|
|
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",j+1,max);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
} |