Update cv7/program.c

This commit is contained in:
Yurii Chechur 2024-11-06 07:23:11 +00:00
parent a98b0bdf19
commit a9f4ebe3c8

View File

@ -59,7 +59,7 @@ void runExpertSystem(Node *node) {
}
// Виводимо питання
printf("%s (Введіть 'y' для так або 'n' для ні): ", node->question_or_answer);
printf("%s (Введіть 'a' для так або 'n' для ні): ", node->question_or_answer);
// Читаємо відповідь користувача
char choice;
@ -67,7 +67,7 @@ void runExpertSystem(Node *node) {
// Обробка відповіді
switch (choice) {
case 'y': // Якщо "так"
case 'a': // Якщо "так"
node = node->yes_branch;
break;
case 'n': // Якщо "ні"