-
-
Notifications
You must be signed in to change notification settings - Fork 382
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
order of operations #20
Comments
the calculator is quite primitive and can have issues, and it even wont be my priority for some time as other apps perform better. So fixing things could take some time. |
Actually, I don't think this is a bug. Because this is a simple calculator and the main purpose of this app is not to solve a complex equation like 1+3*2. It should display the result according to the order of the input. When you input the second operation *, the result should just base on the result of the previous operation. But if you do want to solve this, you can use |
@tibbi Would you like to have this feature? Because, in my opinion, it should be simple with ExpressionBuilder that is used in the code. |
no, it isnt on the roadmap now, maybe someday in the scientific calculator |
there is a good calculator project which you can take note. |
without it isnt the calculator worth using imho |
Order of operations doesn't seem to work.
Example: 2+3*4 result is 20, but that's wrong. The correct result should be 14.
The text was updated successfully, but these errors were encountered: