This commit is contained in:
Tančáková 2024-03-22 08:59:47 +01:00
parent adee55eced
commit 8299a10b7f

View File

@ -52,8 +52,16 @@ int main() {
// Výpis výsledkov
printf("Vysledky:\n");
int total_votes = 0; // Premenná pre uchovanie súčtu hlasov
for (int i = 0; i < count; i++) {
printf("%d %s\n", students[i].votes, students[i].name);
total_votes += students[i].votes; // Pridanie hlasov toho študenta k celkovému súčtu
}
// Výpis súčtu hlasov pre každého študenta
printf("\nSúčet hlasov pre každého študenta:\n");
for (int i = 0; i < count; i++) {
printf("%s: %d\n", students[i].name, students[i].votes);
}
return 0;