top of page

REVERSE POLISH NOTATION CALCULATOR

I coded a Reverse-Polish-Notation Calculator (Postfix Calculator). The Postfix Calculator is a calculator that reads reverse polish notation (postfix) and calculates the value by implementing a self-implemented stack to store parsed values from inputs from the command line. The calculator then pops off the numbers from the stack to calculate the correct value.


From this project, I learned to pay attention to edge cases, especially in parsing

calculator.jpg
Calculator: About
bottom of page