asponbod
This commit is contained in:
parent
bb7c38f6a0
commit
622596b2ae
@ -5,7 +5,6 @@ int main() {
|
|||||||
int pole[50];
|
int pole[50];
|
||||||
int pocetCisel = 0;
|
int pocetCisel = 0;
|
||||||
|
|
||||||
printf("Zadajte maximalne 50 cisel:\n");
|
|
||||||
|
|
||||||
while (pocetCisel < 50) {
|
while (pocetCisel < 50) {
|
||||||
if (scanf("%d", &cislo) == EOF) {
|
if (scanf("%d", &cislo) == EOF) {
|
||||||
@ -27,7 +26,7 @@ int main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < pocetCisel; i++) {
|
for (int i = 0; i < pocetCisel; i++) {
|
||||||
printf("Sutaziaci %d vypil %d pohárov.\n", i + 1, pole[i]);
|
printf("Súťažiaci č. %d vypil %d pohárov.\n", i + 1, pole[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
int vyhercaIndex = 0;
|
int vyhercaIndex = 0;
|
||||||
@ -38,7 +37,7 @@ int main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Výherca je sútaziaci %d, ktory vypil %d poharov.\n", vyhercaIndex + 1, pole[vyhercaIndex]);
|
printf("Výherca je súťažiaci %d, ktorý vypil %d pohárov.\n", vyhercaIndex + 1, pole[vyhercaIndex]);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user