Question: Evaluator for postfix expressions in java Assign5.java: In this assignment, you will create an evaluator for postfix expressions input: Your program should prompt for and
Evaluator for postfix expressions in java


Assign5.java:


In this assignment, you will create an evaluator for postfix expressions input: Your program should prompt for and read postfix expressions. Each expression will be on its own line and tokens will be separated by white space. Operators may be +ul, and perform the expected operation. Assume a integers are positive and there be any invalid characters but the expressions may be not formed correctly. The input ends with an empty line Processing: You will need to read in each string, parse it into the different tokens (either integer or operator) and then evaluate the expr output: For each input line, print the original string and then the answer. The result will be a n integer. Error handling: You must handle the following errors. 1. Division by zero 2. Not enough operators in the expression 3. Not enough operands in the expression. Here is an example of input and output. Enter an expression: 15 7 157 22 Enter an expression: 8 105 5 8 10 5 5 Error: division by zero Enter an expression: 8 105 5 8 10 55 Error not enough operands Enter an expression: 8 10 55 8 1055 Error: not enough operators
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
