This commit is contained in:
Deinerovych 2024-11-06 11:51:46 +01:00
parent 23e483860e
commit d966dbf14b

View File

@ -80,8 +80,8 @@ void run_expert_system(Node *node) {
return; return;
} }
// Проверяем, достигли ли мы листа после перехода // Проверяем, достигли ли мы листа после перехода и выводим ответ, если это так
if (node && !node->yes && !node->no) { if (!node->yes && !node->no) {
printf("*%s\n", node->text); printf("*%s\n", node->text);
printf("Koniec\n"); printf("Koniec\n");
return; return;