Using a stack
For each item in the postfix expression from the left:
if the element is a number push it on the stack
if the element is an operator (+,-,*, or /) then
pop two numbers off the stack
make a calculation: the second number popped-operator-first number
push the result on the stack
When the loop is done the answer is the only item remaining on the stack.