28 lines
474 B
C
28 lines
474 B
C
#include<stdio.h>
|
|
|
|
#define FIELD_SIZE 52
|
|
|
|
int main(){
|
|
int field[FIELD_SIZE] = {0};
|
|
int count = 0;
|
|
int max_num = 0;
|
|
int input;
|
|
|
|
while (count < FIELD_SIZE) {
|
|
if (scanf("%d", &input) != 1) {
|
|
break;
|
|
}
|
|
if (input < 0) {
|
|
break;
|
|
}
|
|
field[count] = input;
|
|
count++;
|
|
}
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
printf("Sutaziaci č. %d vypil %d pohárov.\n", i + 1, field[i]);
|
|
}
|
|
|
|
return 0;
|
|
}
|