This commit is contained in:
Deinerovych 2024-11-08 09:23:56 +01:00
parent 1aadb65c26
commit 643d6d4670

View File

@ -52,26 +52,26 @@ void run_expert_system(Node *node) {
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
printf("%s\n", node->text);
// Проверка, если это листовой узел
// Check if this is a leaf node
if (!node->yes && !node->no) {
printf("*%s\n", node->text); // Выводим ответ с звездочкой
printf("*%s\n", node->text); // Print the answer with an asterisk
printf("Koniec\n");
return;
}
char answer;
if (scanf(" %c", &answer) != 1) {
printf("Koniec\n"); // Некорректный ввод
printf("Koniec\n"); // Incorrect input
return;
}
// Переход к следующему узлу
// Move to the next node
if (answer == 'a') {
node = node->yes;
} else if (answer == 'n') {
node = node->no;
} else {
printf("Koniec\n"); // Некорректный ввод
printf("Koniec\n"); // Incorrect input
return;
}
}