Question: Given a string with an arithmetic expression. (ex: 3+2^2+(4-1)*3-2/2) write a method that uses two stacks to interpret the string and calculate the expression. Output
Given a string with an arithmetic expression. (ex: "3+2^2+(4-1)*3-2/2")
write a method that uses two stacks to interpret the string and calculate the expression.
Output of the example: 3+2^2+(4-1)*3-2/2 = 15
please provide proof of functionality
Write in Java, thank you in advance.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
