This commit is contained in:
Deinerovych 2024-10-16 12:03:17 +02:00
parent b476296374
commit 08f0f63542

View File

@ -33,7 +33,7 @@ float calculator(float n1, float n2, char operation) {
return n1 / n2;
} else {
printf("division by zero\n");
exit(1);
return n1;
}
}
return 0;
@ -63,11 +63,9 @@ void print_stack() {
}
printf("%.2f", stack[i]);
}
printf(" \n"); // добавляем пробел перед новой строкой
printf(" \n");
}
int main() {
char arr[50];
char *pend;
@ -93,13 +91,15 @@ int main() {
float n1 = pop();
char operation = arr[0];
float result = calculator(n1, n2, operation);
push(result);
if (!(operation == '/' && n2 == 0)) {
push(result);
}
print_stack();
}
}
if (stack_top == 0) {
pop();
pop();
printf("no input\n");
} else {
printf("no input\n");