From 8299a10b7f2ccbec8704b502530f808254cc324b Mon Sep 17 00:00:00 2001 From: st529yr Date: Fri, 22 Mar 2024 08:59:47 +0100 Subject: [PATCH] funguje --- cv5/program.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cv5/program.c b/cv5/program.c index 1888d27..9f2d95a 100644 --- a/cv5/program.c +++ b/cv5/program.c @@ -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;