Update cv3/program.c

This commit is contained in:
Viktor Daniv 2024-10-07 12:26:30 +00:00
parent f9fb9c2826
commit bba7a52360

View File

@ -40,9 +40,6 @@ void print_stack(Calculator *calc) {
printf("%.2f ", calc->stack[i]);
}
printf("\n");
if(i == calc->top){
printf("no input\n");
}
}
// Основна функція для роботи з операціями
@ -75,6 +72,7 @@ int perform_operation(Calculator *calc, char op) {
}
print_stack(calc);
printf("no input\n");
return 1;
}