I must do my lab but I can't do please help me how can i find the my lab?

That's my lab:Aim of this assignment to implement “infix to postfix statement conversion” as a console application in C++ language and use “Stack” data structure during implementation.


Your implementation must be able to perform the following steps :

1. Your program must convert the statement in infix notation (which will be requested from user to enter when program runs) to postfix notation and print it to screen.


2. It must evaluate the postfix notation you found previously, then calculate the total and print it to screen.


Sample Output :

Enter infix statement : (3+4)*5+7

Postfix notation : 34+5*7+

Total : 42…

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.