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

View File

@ -47,19 +47,8 @@ int main() {
return 1;
}
// Triedenie študentov
qsort(students, count, sizeof(struct Student), compare);
// 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");
// Sčítanie hlasov pre každého študenta a výpis
printf("Celkový poč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);
}