pvjc24/cv5/program.c

56 lines
1.2 KiB
C
Raw Normal View History

2024-03-13 09:55:11 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2024-03-20 16:26:54 +00:00
#include <time.h>
2024-03-13 09:55:11 +00:00
2024-03-20 14:57:31 +00:00
#define SIZE 100
2024-03-20 14:08:46 +00:00
2024-03-20 14:57:31 +00:00
struct student {
2024-03-20 15:42:19 +00:00
char name[SIZE];
2024-03-20 14:57:31 +00:00
int votes;
};
2024-03-13 09:55:11 +00:00
2024-03-20 16:26:54 +00:00
int find_student(struct student* students, int size, const char* name) {
for (int i = 0; i < size; i++) {
if (strcmp(students[i].name, name) == 0) {
return i;
}
2024-03-20 15:22:08 +00:00
}
2024-03-20 16:26:54 +00:00
return -1;
2024-03-20 14:57:31 +00:00
}
2024-03-20 15:22:08 +00:00
int main() {
2024-03-20 16:26:54 +00:00
struct student database[SIZE];
memset(database, 0, SIZE * sizeof(struct student));
int size = 0;
srand(time(NULL)); // Inicializácia generátora náhodných čísel
2024-03-20 16:31:33 +00:00
// Definícia vstupu
char input[] = "10 Terian Dis\n";
// Zobrazenie definície vstupu
printf("Vstup:\n%s\n", input);
2024-03-20 16:29:22 +00:00
// Čítanie vstupu a vytváranie databázy
2024-03-20 16:31:33 +00:00
int votes;
char name[SIZE];
sscanf(input, "%d %s %s", &votes, name, name + strlen(name) + 1); // Načítanie počtu hlasov, mena a priezviska
int id = find_student(database, size, name);
if (id < 0) {
strcpy(database[size].name, name);
database[size].votes = votes;
size++;
} else {
database[id].votes += votes;
2024-03-20 15:22:08 +00:00
}
2024-03-20 16:26:54 +00:00
// Výpis databázy
2024-03-20 16:31:33 +00:00
printf("\nVysledky:\n");
printf("%d %s\n", database[0].votes, database[0].name);
2024-03-20 16:26:54 +00:00
2024-03-20 15:22:08 +00:00
return 0;
2024-03-13 09:55:11 +00:00
}