In C++ Programing, Write a program which will take a calculation from the user u
ID: 3676599 • Letter: I
Question
In C++ Programing, Write a program which will take a calculation from the user using a set of numbers and the operands +, -, *, / and will determine the result. Use the algorithm demonstrated in class to implement the solution, but do it using a singly linked list to emulate the stack ADT. You can exclude parentheses.
must use strings,can't use stack ADT and must use Class nodes not structure.
end result example:::
user inputs::: 123+2-2*1*4/
// Then will ask user if they would like to continue or end and solve the equation //
continue (Y) or End (N)
// if user press (N) then the output will be //
example output :: 4
//but if user enters (Y) then it would ask for a operation input then a number and another operation and ask the:: Continue(Y) or End (N) :: command again //