Calculator (C++)
A calculator that can parse math expressions and do the computation
-
Support operators: +-*/
-
Identify operator orders (handle *,/ prior to +,-)
-
Support minus numbers
-
Support parentheses in expression
-
Accept a space between numbers and operators in expression
-
Reject invalid expression
Calculator with CLI