From 088648b67cdf3f69b214ccdf7dceedac28caaca8 Mon Sep 17 00:00:00 2001 From: Weber Date: Fri, 22 Mar 2024 00:45:20 +0000 Subject: [PATCH] test --- cv5/program.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cv5/program.c b/cv5/program.c index ad6d63d..facb241 100644 --- a/cv5/program.c +++ b/cv5/program.c @@ -1,3 +1,4 @@ + #include #include #include @@ -26,7 +27,7 @@ int main() { int student_count = 0; char line[1024]; - int total_votes = 0; + int total_votes = 0; // Celkový počet hlasov, ak je iba jeden študent while (fgets(line, sizeof(line), stdin)) { int vote_count; @@ -36,7 +37,7 @@ int main() { if (student_count == 0) { total_votes = vote_count; } else { - int existing_student_index = 0; + int existing_student_index = -1; for (int i = 0; i < student_count; i++) { if (strcmp(students[i].name, name) == 0) { existing_student_index = i; @@ -44,7 +45,7 @@ int main() { } } - if (existing_student_index != 0) { + if (existing_student_index != -1) { students[existing_student_index].vote_count += vote_count; } else { if (student_count >= students_capacity) {