Question: Write a Java program for Evaluating Postfix Expression 1. Input a postfix expression from user. 2. Evaluate expression using double stack made of your own
Write a Java program for Evaluating Postfix Expression 1. Input a postfix expression from user. 2. Evaluate expression using double stack made of your own linked list. 3. Show the result of expression or error if incorrect. (Sample run of the proaram) [Warning: Cheating in homework will result in zero marks... (same programs will get 0).] Note : - Input expression will be a String. After the input, parse the string for numbers and operators. - Operands may be integers, and floats or doubles. Hence use a stack which can store doubles. - A simple example is available at [ https://courses.cs.washington. du/courses/cse143/12su/lectures/06-27/programs/Postfix.java ]. Modify it for input of expression from user and use of double date type so that it should work for both integers and doubles. - Postfix expression consists of numbers(integers/doubles), +-*/, and spaces such as "2 3.04 *
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
