33
This commit is contained in:
parent
3b43313b48
commit
8ecd99105d
@ -52,26 +52,33 @@ 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); // Print the answer with an asterisk
|
printf("*%s\n", node->text); // Выводим ответ с звездочкой
|
||||||
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"); // Incorrect input
|
printf("Koniec\n"); // Некорректный ввод
|
||||||
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"); // Incorrect input
|
printf("Koniec\n"); // Некорректный ввод
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Дополнительная проверка для вывода конечного узла
|
||||||
|
if (node && !node->yes && !node->no) {
|
||||||
|
printf("*%s\n", node->text);
|
||||||
|
printf("Koniec\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user