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