pvjc24/cv10/program.c

66 lines
1.6 KiB
C
Raw Normal View History

2024-04-22 12:01:17 +00:00
#include <stdio.h>
2024-04-25 15:29:10 +00:00
#include <string.h>
2024-04-22 12:01:17 +00:00
2024-04-25 15:32:41 +00:00
#define MAX_STUDENTS 100
#define NAME_SIZE 50
2024-04-22 12:01:17 +00:00
int main() {
2024-04-25 15:32:41 +00:00
int max_students, num_accepted = 0, num_students = 0;
char names[MAX_STUDENTS][NAME_SIZE];
char temp_name[NAME_SIZE];
2024-04-22 12:06:40 +00:00
2024-04-25 15:32:41 +00:00
scanf("%d", &max_students);
if (max_students <= 0 || max_students > MAX_STUDENTS) {
printf("Nespravny vstup\n");
2024-04-22 12:06:40 +00:00
return 1;
}
2024-04-22 12:01:17 +00:00
2024-04-25 15:32:41 +00:00
memset(names, 0, sizeof(names));
2024-04-25 15:31:18 +00:00
2024-04-25 15:56:47 +00:00
while (fgets(temp_name, sizeof(temp_name), stdin)!= NULL && num_accepted < max_students) {
2024-04-25 16:05:26 +00:00
temp_name[strcspn(temp_name, "\n")] = '\0';
2024-04-25 15:41:03 +00:00
2024-04-25 15:54:24 +00:00
int i, found = 0;
2024-04-25 15:56:47 +00:00
2024-04-25 15:32:41 +00:00
for (i = 0; i < num_accepted; i++) {
if (strcmp(names[i], temp_name) == 0) {
found = 1;
2024-04-22 12:01:17 +00:00
break;
}
}
2024-04-25 15:56:47 +00:00
if (!found) {
2024-04-25 15:32:41 +00:00
strcpy(names[num_accepted], temp_name);
num_accepted++;
2024-04-22 12:01:17 +00:00
}
2024-04-25 15:32:41 +00:00
num_students++;
2024-04-22 12:01:17 +00:00
}
2024-04-25 15:32:41 +00:00
if (num_accepted == 0) {
2024-04-25 15:56:47 +00:00
printf("Ziadne prihlasky");
2024-04-25 15:32:41 +00:00
} else {
2024-04-25 16:02:44 +00:00
printf("Prijati studenti:");
2024-04-25 15:32:41 +00:00
for (int i = 0; i < num_accepted; i++) {
2024-04-25 16:05:26 +00:00
printf("%s\n", names[i]);
2024-04-25 15:56:47 +00:00
}
2024-04-25 16:18:09 +00:00
printf("%d1",num_accepted);
printf("%d2",num_students);
2024-04-25 15:56:47 +00:00
2024-04-25 15:59:26 +00:00
if (num_students > num_accepted) {
2024-04-25 16:02:44 +00:00
printf("Neprijati studenti:");
2024-04-25 15:59:26 +00:00
for (int i = 0; i < num_students; i++) {
2024-04-25 16:05:26 +00:00
strcpy(temp_name, names[i]);
2024-04-25 15:59:26 +00:00
int found = 0;
for (int j = 0; j < num_accepted; j++) {
if (strcmp(names[j], temp_name) == 0) {
found = 1;
break;
}
}
2024-04-25 15:56:47 +00:00
}
2024-04-22 12:06:40 +00:00
}
2024-04-22 12:01:17 +00:00
}
2024-04-22 16:28:15 +00:00
2024-04-22 12:01:17 +00:00
return 0;
2024-04-25 16:05:26 +00:00
}