This commit is contained in:
Weber 2024-03-22 00:42:28 +00:00
parent a4df11eb59
commit aa10463424

View File

@ -36,7 +36,7 @@ int main() {
if (student_count == 0) {
total_votes = vote_count;
} else {
int existing_student_index = -1;
int existing_student_index = 0;
for (int i = 0; i < student_count; i++) {
if (strcmp(students[i].name, name) == 0) {
existing_student_index = i;
@ -44,7 +44,7 @@ int main() {
}
}
if (existing_student_index != -1) {
if (existing_student_index != 0) {
students[existing_student_index].vote_count += vote_count;
} else {
if (student_count >= students_capacity) {