This commit is contained in:
Deinerovych 2024-11-07 14:40:19 +01:00
parent eadc9a27bc
commit 80e2744b60

View File

@ -52,7 +52,7 @@ void run_expert_system(Node *node) {
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
printf("%s\n", node->text);
// Если узел - конечный (ответ), выводим его и завершаем
// Print the options and then the answer if it's a leaf node.
if (!node->yes && !node->no) {
printf("*%s\n", node->text);
printf("Koniec\n");