pvjc24/cv10/program.c

67 lines
1.7 KiB
C
Raw Permalink Normal View History

2024-04-16 13:15:14 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main() {
char pole[100][100];
int pocet_studentov = 0;
int ziadne_mena = 1;
2024-04-22 15:34:55 +00:00
char prvy_input[100];
if (fgets(prvy_input, sizeof(prvy_input), stdin) == NULL || atoi(prvy_input) <= 0) {
2024-04-16 13:15:14 +00:00
printf("Nespravny vstup\n");
2024-04-22 15:35:55 +00:00
return 0;
2024-04-16 13:15:14 +00:00
}
2024-04-22 15:28:29 +00:00
while (fgets(pole[pocet_studentov], sizeof(pole[pocet_studentov]), stdin) != NULL) {
if (pole[pocet_studentov][0] == '\n') {
break;
}
ziadne_mena = 0;
2024-04-16 13:15:14 +00:00
pole[pocet_studentov][strcspn(pole[pocet_studentov], "\n")] = '\0';
pocet_studentov++;
}
2024-04-22 15:28:29 +00:00
if (ziadne_mena) {
2024-04-16 13:15:14 +00:00
printf("Ziadne prihlasky\n");
2024-04-22 15:36:45 +00:00
return 0;
2024-04-16 13:15:14 +00:00
}
2024-04-22 15:30:43 +00:00
for (int i = 0; i < pocet_studentov - 1; i++) {
for (int j = i + 1; j < pocet_studentov; j++) {
if (strcmp(pole[i], pole[j]) == 0) {
strcpy(pole[j], pole[pocet_studentov - 1]);
pocet_studentov--;
j--;
}
}
}
2024-04-22 15:28:29 +00:00
for (int i = 0; i < pocet_studentov - 1; i++) {
2024-04-16 13:15:14 +00:00
for (int j = i + 1; j < pocet_studentov; j++) {
if (strcmp(pole[i], pole[j]) > 0) {
char temp[100];
strcpy(temp, pole[i]);
strcpy(pole[i], pole[j]);
strcpy(pole[j], temp);
}
}
}
printf("Prijati studenti:\n");
2024-04-22 15:34:55 +00:00
int pocet = atoi(prvy_input);
2024-04-22 15:28:29 +00:00
for (int i = 0; i < pocet && i < pocet_studentov; i++) {
2024-04-16 13:15:14 +00:00
printf("%s\n", pole[i]);
}
2024-04-22 15:28:29 +00:00
if (pocet < pocet_studentov) {
printf("Neprijati studenti:\n");
for (int i = pocet; i < pocet_studentov; i++) {
printf("%s\n", pole[i]);
}
2024-04-16 13:15:14 +00:00
}
return 0;
}