funguje
This commit is contained in:
parent
71e5daa9f9
commit
994444a401
@ -2,73 +2,54 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#define SIZE 100 // Veľkosť pomocného poľa pre načítanie riadku
|
#define SIZE 100
|
||||||
|
|
||||||
// Definícia štruktúry pre študenta
|
// Štruktúra pre reprezentáciu študenta
|
||||||
struct student {
|
typedef struct {
|
||||||
char name[50];
|
char name[SIZE];
|
||||||
int votes;
|
int votes;
|
||||||
};
|
} Student;
|
||||||
|
|
||||||
// Funkcia na porovnanie študentov pri triedení
|
// Funkcia na pridanie študenta do databázy
|
||||||
int compare(const void *s1, const void *s2) {
|
void addStudent(Student database[], char name[], int votes, int *count) {
|
||||||
struct student *student1 = (struct student *)s1;
|
strcpy(database[*count].name, name);
|
||||||
struct student *student2 = (struct student *)s2;
|
database[*count].votes = votes;
|
||||||
|
(*count)++;
|
||||||
// Ak majú rôzny počet hlasov, porovnáme podľa počtu hlasov
|
|
||||||
if (student1->votes != student2->votes) {
|
|
||||||
return student2->votes - student1->votes; // Zoradenie zostupne podľa počtu hlasov
|
|
||||||
} else {
|
|
||||||
// Ak majú rovnaký počet hlasov, porovnáme podľa abecedy
|
|
||||||
return strcmp(student1->name, student2->name);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
struct student students[100]; // Pole pre ukladanie študentov
|
char line[SIZE];
|
||||||
int num_students = 0; // Počet načítaných študentov
|
char name[SIZE];
|
||||||
|
int votes;
|
||||||
|
|
||||||
|
// Databáza študentov
|
||||||
|
Student database[SIZE];
|
||||||
|
int count = 0;
|
||||||
|
|
||||||
|
printf("Zadajte mená študentov a počet hlasov:\n");
|
||||||
|
|
||||||
// Načítanie hlasov zo vstupu
|
|
||||||
while (1) {
|
while (1) {
|
||||||
int votes;
|
// Načítanie riadku zo štandardného vstupu
|
||||||
char name[50];
|
if (fgets(line, SIZE, stdin) == NULL || line[0] == '\n') {
|
||||||
char line[SIZE];
|
break; // Koniec načítania
|
||||||
|
|
||||||
// Načítame riadok zo vstupu
|
|
||||||
memset(line, 0, SIZE);
|
|
||||||
char* r = fgets(line, SIZE, stdin);
|
|
||||||
if (r == NULL) {
|
|
||||||
// Koniec vstupu
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Načítame hlas a meno študenta zo vstupného riadku
|
// Rozdelenie riadku na meno a počet hlasov
|
||||||
if (sscanf(line, "%d %49[^\n]", &votes, name) == 2) {
|
if (sscanf(line, "%s %d", name, &votes) != 2) {
|
||||||
// Ak sme načítali záznam úspešne, pridáme študenta do databázy
|
|
||||||
strcpy(students[num_students].name, name);
|
|
||||||
students[num_students].votes = votes;
|
|
||||||
num_students++;
|
|
||||||
} else {
|
|
||||||
// Ak sa nepodarilo načítať, skončíme načítavanie
|
|
||||||
printf("CHYBA: Neplatny zapis na riadku.\n");
|
printf("CHYBA: Neplatny zapis na riadku.\n");
|
||||||
return 1;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Pridanie študenta do databázy
|
||||||
|
addStudent(database, name, votes, &count);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ak sme načítali aspoň jedného študenta, zoradíme ich podľa počtu hlasov a mena
|
// Výpis výsledkov
|
||||||
if (num_students > 0) {
|
printf("\nVysledky:\n");
|
||||||
qsort(students, num_students, sizeof(struct student), compare);
|
for (int i = 0; i < count; i++) {
|
||||||
|
printf("%d %s\n", database[i].votes, database[i].name);
|
||||||
// Výpis výsledkov
|
|
||||||
printf("Vysledky:\n");
|
|
||||||
for (int i = 0; i < num_students; i++) {
|
|
||||||
printf("%d %s\n", students[i].votes, students[i].name);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// Ak sme nenenačítali žiadneho študenta, vypíšeme chybovú správu
|
|
||||||
printf("CHYBA: Ziadny zaznam na vstupe.\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user