diff --git a/cv5/program.c b/cv5/program.c index 9f2d95a..05d0a19 100644 --- a/cv5/program.c +++ b/cv5/program.c @@ -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); }