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