G
This commit is contained in:
parent
cf1436966a
commit
c8bc3e152b
@ -3,21 +3,22 @@
|
||||
#define FIELD_SIZE 52
|
||||
|
||||
int main(){
|
||||
int field[FIELD_SIZE] = {0}; // Inicializujte poľo na 0
|
||||
int field[FIELD_SIZE] = {0};
|
||||
int count = 0;
|
||||
int max_num = 0;
|
||||
int input;
|
||||
|
||||
while (count < FIELD_SIZE) {
|
||||
if (input < 0) {
|
||||
printf("Ukoncenie zadavania.\n");
|
||||
if (scanf("%d", &input) != 1) {
|
||||
break;
|
||||
}
|
||||
if (input < 0) {
|
||||
break;
|
||||
}
|
||||
field[count] = input;
|
||||
count++;
|
||||
}
|
||||
|
||||
printf("Vypisane hodnoty:\n");
|
||||
for (int i = 0; i < count; i++) {
|
||||
printf("Sutaziaci č. %d vypil %d pohárov.\n", i + 1, field[i]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user