Update cv7/program.c
This commit is contained in:
parent
2bb5190525
commit
5e73fcf442
@ -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 vstupu\n"); // Окончательный ответ
|
printf("Koniec\n"); // Окончательный ответ с сообщением об окончании
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -92,4 +92,4 @@ int main() {
|
|||||||
znic_strom(databaza_znalosti);
|
znic_strom(databaza_znalosti);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user