Update cv7/program.c
This commit is contained in:
parent
5e73fcf442
commit
499b7982d2
@ -57,13 +57,13 @@ void spusti_expert_system(struct strom* uzol) {
|
||||
char odpoved;
|
||||
if (scanf(" %c", &odpoved) != 1 || (odpoved != 'a' && odpoved != 'n')) {
|
||||
printf("Nerozumiem\n");
|
||||
return;
|
||||
}
|
||||
|
||||
if (odpoved == 'a') {
|
||||
spusti_expert_system(uzol->ano);
|
||||
spusti_expert_system(uzol); // Повторный вызов для текущего вопроса при некорректном ответе
|
||||
} else {
|
||||
spusti_expert_system(uzol->nie);
|
||||
if (odpoved == 'a') {
|
||||
spusti_expert_system(uzol->ano);
|
||||
} else {
|
||||
spusti_expert_system(uzol->nie);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -92,4 +92,4 @@ int main() {
|
||||
znic_strom(databaza_znalosti);
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user