-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.cpp
More file actions
46 lines (39 loc) · 667 Bytes
/
index.cpp
File metadata and controls
46 lines (39 loc) · 667 Bytes
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
#include <iostream>
#include <vector>
using namespace std;
int main(){
int choice;
while((choice =printMenuAndAcceptChoice()) !=0){
switch (choice)
{
case 1:{
break;
}
case 2:{
break;
}
case 3:{
break;
}
case 4:{
break;
}
case 5:{
break;
}
case 6:{
break;
}
case 7:{
break;
}
case 8:{
break;
}
default:
cout<<"Enter Valid Choice :)"<<endl;
break;
}
}
return 0;
}