29 lines
633 B
C
29 lines
633 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#define VELKOST_POLA 52
|
|
|
|
struct Winner{
|
|
int drinks,position;
|
|
};
|
|
|
|
int main(){
|
|
int drinks_counter[VELKOST_POLA];
|
|
int i=0;
|
|
while(i<VELKOST_POLA){
|
|
scanf("%d",drinks_counter[i]);
|
|
if(drink_counter[i]<1){
|
|
break;
|
|
}
|
|
i++;
|
|
}
|
|
struct Winner max={0,0};
|
|
for(int j=0;j<i;j++){
|
|
printf("Súťažiaci č.%d vypil %d pohárov.\n",j,drinks_counter[j]);
|
|
if(drinks_counter[j]>max.drinks){
|
|
max.drinks=drinks_counter[j];
|
|
max.position=j;
|
|
}
|
|
}
|
|
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n",max.position,max.drinks);
|
|
return 0;
|
|
} |