Update cv7/program.c

This commit is contained in:
Marat Izmailov 2024-11-14 21:11:04 +00:00
parent 2bb5190525
commit 5e73fcf442

View File

@ -4,7 +4,7 @@
#define SIZE 256
// Шструктура узла бинарного дерева
// Структура узла бинарного дерева
struct strom {
char otazka[SIZE];
struct strom* ano;
@ -50,7 +50,7 @@ void spusti_expert_system(struct strom* uzol) {
printf("%s", uzol->otazka);
if (!uzol->ano && !uzol->nie) {
printf("Koniec vstupu\n"); // Окончательный ответ
printf("Koniec\n"); // Окончательный ответ с сообщением об окончании
return;
}
@ -92,4 +92,4 @@ int main() {
znic_strom(databaza_znalosti);
return 0;
}
}