test
This commit is contained in:
parent
aa10463424
commit
088648b67c
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@ -26,7 +27,7 @@ int main() {
|
|||||||
int student_count = 0;
|
int student_count = 0;
|
||||||
|
|
||||||
char line[1024];
|
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)) {
|
while (fgets(line, sizeof(line), stdin)) {
|
||||||
int vote_count;
|
int vote_count;
|
||||||
@ -36,7 +37,7 @@ int main() {
|
|||||||
if (student_count == 0) {
|
if (student_count == 0) {
|
||||||
total_votes = vote_count;
|
total_votes = vote_count;
|
||||||
} else {
|
} else {
|
||||||
int existing_student_index = 0;
|
int existing_student_index = -1;
|
||||||
for (int i = 0; i < student_count; i++) {
|
for (int i = 0; i < student_count; i++) {
|
||||||
if (strcmp(students[i].name, name) == 0) {
|
if (strcmp(students[i].name, name) == 0) {
|
||||||
existing_student_index = i;
|
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;
|
students[existing_student_index].vote_count += vote_count;
|
||||||
} else {
|
} else {
|
||||||
if (student_count >= students_capacity) {
|
if (student_count >= students_capacity) {
|
||||||
|
Loading…
Reference in New Issue
Block a user