From 643d6d4670f8acaff7eea006a5310475ff68f785 Mon Sep 17 00:00:00 2001 From: Deinerovych Date: Fri, 8 Nov 2024 09:23:56 +0100 Subject: [PATCH] 31 --- cv7/program.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cv7/program.c b/cv7/program.c index 7e789be..c187b6a 100644 --- a/cv7/program.c +++ b/cv7/program.c @@ -52,26 +52,26 @@ void run_expert_system(Node *node) { printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n"); printf("%s\n", node->text); - // Проверка, если это листовой узел + // Check if this is a leaf node if (!node->yes && !node->no) { - printf("*%s\n", node->text); // Выводим ответ с звездочкой + printf("*%s\n", node->text); // Print the answer with an asterisk printf("Koniec\n"); return; } char answer; if (scanf(" %c", &answer) != 1) { - printf("Koniec\n"); // Некорректный ввод + printf("Koniec\n"); // Incorrect input return; } - // Переход к следующему узлу + // Move to the next node if (answer == 'a') { node = node->yes; } else if (answer == 'n') { node = node->no; } else { - printf("Koniec\n"); // Некорректный ввод + printf("Koniec\n"); // Incorrect input return; } }