18
This commit is contained in:
parent
23e483860e
commit
d966dbf14b
@ -80,8 +80,8 @@ void run_expert_system(Node *node) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Проверяем, достигли ли мы листа после перехода
|
||||
if (node && !node->yes && !node->no) {
|
||||
// Проверяем, достигли ли мы листа после перехода и выводим ответ, если это так
|
||||
if (!node->yes && !node->no) {
|
||||
printf("*%s\n", node->text);
|
||||
printf("Koniec\n");
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user