A calculator made in C++ with operator precedence.
- The following expressions with parenthesis don't work.
1 + ((2^2)^2)
((2^2)^2)
- Negatives. Such as
- 1 + 2
. The calculator will assume-
as anOperand
. This is due to the way things are set. - Decimal exponents don't work either.