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