This commit is contained in:
Deinerovych 2024-10-16 12:25:10 +02:00
parent d74a2081d4
commit 3ead7ac6c6

View File

@ -86,6 +86,7 @@ int main() {
printf("no input\n");
return 0;
}
float n2 = pop();
float n1 = pop();
char operation = arr[0];
@ -97,10 +98,8 @@ int main() {
}
}
if (stack_top == 0) {
return 0;
}
else if (stack_top == -1) {
// После выполнения всех операций нужно проверить, что стек пуст
if (stack_top == -1) {
printf("no input\n");
}