-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem_009.cpp
More file actions
58 lines (58 loc) · 1.1 KB
/
problem_009.cpp
File metadata and controls
58 lines (58 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//Write a menu driven program to implement stack
#include<iostream>
using namespace std;
#define SIZE 5
int stack[SIZE];
int top=-1;
bool isEmpty(){
if(top<SIZE){
return true;
}
return false;
}
void push(int value){
if(isEmpty()){
top=top+1;
stack[top]=value;
}else{
cout<<"Stack is full!!!\n";
}
}
void pop(){
if(top== -1){
cout<<"Stack is Empty!!!!\n";
}else{
top=top-1;
}
}
void display(){
for(int i=top;i>=0;i--){
cout<<stack[i]<<endl;
}
}
int main(){
int chose,val;
int x=1;
while(x){
cout<<"1. Push\n2. Pop\n3. Display\n";
cout<<"Enter your chose:";
cin>>chose;
switch(chose){
case 1:
cout<<"Enter Value:";
cin>> val;
push(val);
break;
case 2:
pop();
break;
case 3:
display();
x=0;
break;
default:
cout<<"Enter right option"<<endl;
}
}
return 0;
}