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; } }