This commit is contained in:
Maksym Kovalchuk 2026-04-16 15:25:36 +00:00
parent 6d96a58aa6
commit 35a304eca8

View File

@ -76,7 +76,7 @@ void start(Tree *node) {
printf("%s\n", node->text);
if (fgets(input, SIZE, stdin) == NULL) {
printf("Nespravny vstup\n");
printf("Nerozumiem\n");
return;
}
@ -88,7 +88,7 @@ void start(Tree *node) {
} else if (input[i] == 'n') {
node = node->no;
} else {
printf("Nespravny vstup\n");
printf("Nerozumiem\n");
return;
}
}