26
This commit is contained in:
parent
e6fcb73d14
commit
bbb91099f3
@ -49,29 +49,28 @@ int count_products(Node *node) {
|
|||||||
|
|
||||||
void run_expert_system(Node *node) {
|
void run_expert_system(Node *node) {
|
||||||
while (node) {
|
while (node) {
|
||||||
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
|
if (!node->yes && !node->no) { // Если это листовой узел
|
||||||
printf("%s\n", node->text);
|
printf("*%s\n", node->text); // Выводим только ответ
|
||||||
|
|
||||||
// Print the answer if it's a leaf node.
|
|
||||||
if (!node->yes && !node->no) {
|
|
||||||
printf("*%s\n", node->text);
|
|
||||||
printf("Koniec\n");
|
printf("Koniec\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
|
||||||
|
printf("%s\n", node->text);
|
||||||
|
|
||||||
char answer;
|
char answer;
|
||||||
if (scanf(" %c", &answer) != 1) {
|
if (scanf(" %c", &answer) != 1) {
|
||||||
printf("Koniec\n"); // Incorrect input, termination
|
printf("Koniec\n"); // Неправильный ввод, завершение
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Move to the next node based on user's answer
|
// Переход к следующему узлу в зависимости от ответа пользователя
|
||||||
if (answer == 'a') {
|
if (answer == 'a') {
|
||||||
node = node->yes;
|
node = node->yes;
|
||||||
} else if (answer == 'n') {
|
} else if (answer == 'n') {
|
||||||
node = node->no;
|
node = node->no;
|
||||||
} else {
|
} else {
|
||||||
printf("Koniec\n"); // Incorrect answer, termination
|
printf("Koniec\n"); // Неправильный ответ, завершение
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user