This commit is contained in:
Michal Utľák 2024-02-27 17:06:40 +01:00
parent 0b2058faca
commit 5d16981bdc

View File

@ -29,22 +29,21 @@ int main() {
} }
int maxPoharov = pole[0]; int maxPoharov = pole[0];
int vyhercovia[50]; int pocetVyhercov = 1;
int pocetVyhercov = 0;
for (int i = 1; i < pocetCisel; i++) { for (int i = 1; i < pocetCisel; i++) {
if (pole[i] > maxPoharov) { if (pole[i] > maxPoharov) {
maxPoharov = pole[i]; maxPoharov = pole[i];
pocetVyhercov = 0; pocetVyhercov = 1;
vyhercovia[pocetVyhercov++] = i;
} else if (pole[i] == maxPoharov) { } else if (pole[i] == maxPoharov) {
vyhercovia[pocetVyhercov++] = i; pocetVyhercov++;
} }
} }
for (int i = 0; i < pocetCisel; i++) {
for (int i = 0; i < pocetVyhercov; i++) { if (pole[i] == maxPoharov) {
printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n", vyhercovia[i] + 1, pole[vyhercovia[i]]); printf("Výherca je súťažiaci %d ktorý vypil %d pohárov.\n", i + 1, pole[i]);
}
} }
return 0; return 0;