From c262b5c146ece3add638f0399c4790c4b9c701f8 Mon Sep 17 00:00:00 2001 From: st529yr Date: Fri, 22 Mar 2024 00:20:05 +0100 Subject: [PATCH] funguje --- cv5/program.c | 44 ++++++++++++++++++++++++++++++++------------ 1 file changed, 32 insertions(+), 12 deletions(-) diff --git a/cv5/program.c b/cv5/program.c index cc51195..60f72b1 100644 --- a/cv5/program.c +++ b/cv5/program.c @@ -23,36 +23,56 @@ int compare(const void *p1, const void *p2) { return strcmp(s1->name, s2->name); } -int main() { - // Otvoríme súbor na čítanie +// Načíta študentov zo súboru do pola +int read_students_from_file(struct Student students[], int max_students) { FILE *file = fopen("nazov_suboru.txt", "r"); if (file == NULL) { perror("Chyba pri otváraní súboru"); - return 1; + return -1; } - // Pole študentov - struct Student students[MAX_STUDENTS]; int num_students = 0; - - // Načítame každý riadok zo súboru char line[MAX_SIZE]; while (fgets(line, sizeof(line), file) != NULL) { - // Načítame počet hlasov a meno int votes; char name[MAX_SIZE]; if (sscanf(line, "%d %99[^\n]", &votes, name) == 2) { - // Uložíme študenta do pola študentov strcpy(students[num_students].name, name); students[num_students].votes = votes; num_students++; - } else { - fprintf(stderr, "CHYBA: Neplatný zápis na riadku\n"); + if (num_students >= max_students) { + break; // Prekročený maximálny počet študentov + } } } - // Uzavrieme súbor fclose(file); + return num_students; +} + +// Pridá nového študenta do súboru +void add_student_to_file(const struct Student *student) { + FILE *file = fopen("nazov_suboru.txt", "a"); + if (file == NULL) { + perror("Chyba pri otváraní súboru"); + return; + } + fprintf(file, "%d %s\n", student->votes, student->name); + fclose(file); +} + +int main() { + struct Student students[MAX_STUDENTS]; + int num_students = read_students_from_file(students, MAX_STUDENTS); + if (num_students == -1) { + return 1; // Chyba pri čítaní zo súboru + } + + // Pridáme nového študenta + struct Student new_student; + strcpy(new_student.name, "Novy Student"); + new_student.votes = 5; + add_student_to_file(&new_student); // Zoradíme študentov podľa počtu hlasov qsort(students, num_students, sizeof(struct Student), compare);