Question: I need this program written in C++ Stack Menu Prompt Type A to push a number to the stack Type B to pop a number
I need this program written in C++


Stack Menu Prompt Type A to push a number to the stack Type B to pop a number from the stack Type C to output the top of the stack Type D to purge the stack Type E B Error underflow, stack is Empty A Enter a number between 0 and 99 to push to the stack: 1 Items on the Stack: 1 Stack Menu Prompt Type A to push a number to the stack Type B to pop a number from the stack Type C to output the top of the stack Type D to purge the stack Type E A Enter a number between 0 and 99 to push to the stack: 200 Wrong input try again Enter a number between 0 and 99 to push to the stack: 20 Items on the Stack: 1 20 Stack Menu Prompt Type A to push a number to the stack Type B to pop a number from the stack Type C to output the top of the stack Type D to purge the stack Type E Top of the Stack: 20 Stack Menu Prompt Type A to push a number to the stack Type B to pop a number from the stack Type C to output the top of the stack Type D to purge the stack Type E B 20 is popped Items on the Stack: 1 Using arrays please write a program to implement the STACK concept. After creating the Array, the user is to be presented with a menu to choose a number of options such as pop, push, top elements (10-15) to be added on the stack are ints between o and 99 display the stack after every operation include a loop to re display the options (menu) and an outer loop to restart the program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
