You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a simple command line math calculator. It can handle +-*/^ and ().
Algorithm
The way this program works is to take in an equation and convert it to Reverse Polish Notation. It will then calculate the results using the reformatted equation.