variables
This commit is contained in:
parent
a2791ea2e4
commit
8ebdcaf444
@ -27,20 +27,20 @@ int main() {
|
|||||||
printf("Súťažiaci č. %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 maxPoharov = pole[0];
|
int pohare = pole[0];
|
||||||
int pocetVyhercov = 1;
|
int pocetVyhercov = 1;
|
||||||
|
|
||||||
for (int i = 1; i < pocetCisel; i++) {
|
for (int i = 1; i < pocetCisel; i++) {
|
||||||
if (pole[i] > maxPoharov) {
|
if (pole[i] > pohare) {
|
||||||
maxPoharov = pole[i];
|
pohare = pole[i];
|
||||||
pocetVyhercov = 1;
|
pocetVyhercov = 1;
|
||||||
} else if (pole[i] == maxPoharov) {
|
} else if (pole[i] == pohare) {
|
||||||
pocetVyhercov++;
|
pocetVyhercov++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < pocetCisel; i++) {
|
for (int i = 0; i < pocetCisel; i++) {
|
||||||
if (pole[i] == maxPoharov) {
|
if (pole[i] == pohare) {
|
||||||
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n", i + 1, pole[i]);
|
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n", i + 1, pole[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user