43 lines
754 B
C
43 lines
754 B
C
#include<stdio.h>
|
|
#include<string.h>
|
|
#define VELKOST_POLA 12
|
|
|
|
|
|
int main(){
|
|
|
|
int value = 0;
|
|
|
|
int pole[VELKOST_POLA];
|
|
memset(pole,0,VELKOST_POLA*(sizeof(int)));
|
|
|
|
|
|
int max_hodnota=0;
|
|
int idx=0;
|
|
while (1){
|
|
int r=scanf("%d",&value);
|
|
if(r!=1||idx==VELKOST_POLA){
|
|
break;
|
|
}
|
|
pole[idx]=value;
|
|
if (pole[idx] > max_hodnota){
|
|
max_hodnota = pole[i];
|
|
}
|
|
idx++;
|
|
value++;
|
|
}
|
|
|
|
if (value==0){
|
|
printf("Error\n");
|
|
return 0;
|
|
}
|
|
|
|
for(int i=0; i<VELKOST_POLA;i++){
|
|
printf("Súťažiaci č. %d vypil %d pohárov.", i, pole[i]);
|
|
}
|
|
|
|
|
|
//printf("%d\n", max_hodnota);
|
|
|
|
return 0;
|
|
}
|