This commit is contained in:
Matus Tokarcik 2024-03-21 23:04:02 +01:00
parent c8444fa97d
commit 0a1a0045b5

View File

@ -84,7 +84,7 @@ int main() {
} }
if (check_and_parse_line(line, &votes, name) == 0) { if (check_and_parse_line(line, &votes, name) == 0) {
printf("Neplatný formát"); printf("Neplatny format");
continue; // Preskoč tento riadok a načítaj ďalší continue; // Preskoč tento riadok a načítaj ďalší
} }
@ -97,7 +97,7 @@ int main() {
databaza[size].votes = votes; databaza[size].votes = votes;
size++; size++;
} else { } else {
printf("Databáza je plná\n"); printf("Databaza je plna\n");
break; // Ukonči načítavanie, keď je databáza plná break; // Ukonči načítavanie, keď je databáza plná
} }
} else { } else {
@ -111,7 +111,7 @@ int main() {
if (chyba == false){ if (chyba == false){
// Výpis výsledkov // Výpis výsledkov
printf("Výsledky:\n"); printf("Vysledky:\n");
for (int i = 0; i < size; i++) { for (int i = 0; i < size; i++) {
printf("%d %s\n", databaza[i].votes, databaza[i].name); printf("%d %s\n", databaza[i].votes, databaza[i].name);
} }