Postfix Operation

A collection of 1 post

Postfix Operation

Problem Write a program that outputs the result of the operation given a postfix expression. If 3(5+2)-9 is expressed as a postfix expression, it is expressed as 352+9- and the result is 12. input Postfix expression is given in the first line. The length of the expression cannot exceed 5…