Question
C++ Evaluate expression using stacks Write a program to demonstrate the use of STACKS. The scenario is as follows: Write a program that reads a
C++ Evaluate expression using stacks
Write a program to demonstrate the use of STACKS. The scenario is as follows:
Write a program that reads a file located in c:\temp. So your file must have come similar to this:
ifstream x("c:\\temp\\input.txt");
From the file, read one expression. The expression has the following operations:
+
-
*
/
The expression also uses ( and ) to determine which gets executed first. for example, the order of operations PEMDAS and an example could be... 5*6 (5+2)/2
Note that you need to use YOUR OWN stack class. Not since will be covered in the next few weeks
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started