funguje
This commit is contained in:
parent
8299a10b7f
commit
c50301b776
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user