Update cv7/program.c

This commit is contained in:
Marat Izmailov 2024-11-14 21:09:57 +00:00
parent 074dbe6ed5
commit 2bb5190525

View File

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