Update cv7/program.c

This commit is contained in:
Yurii Yakovenko 2024-11-11 22:22:17 +00:00
parent 64bfb1ea96
commit aa3398b61d

View File

@ -84,11 +84,11 @@ int main(void)
t=fgetc(stdin); t=fgetc(stdin);
if(t=='a') if(t=='a')
{ {
p=p->left; break; p=p->left;
} }
else if(t=='n') else if(t=='n')
{ {
p=p->right; break; p=p->right;
} }
else else
{ {