Inactive Tutor answered 05/29/19
Tutor
New to Wyzant
So it is an expression parser and calculator.
Parse the string into tokens
Push operands onto a stack
when you get an operator, pop two operands off the stack,
do the calculation, and pop the result on the stack