-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
34 lines (29 loc) · 758 Bytes
/
main.cpp
File metadata and controls
34 lines (29 loc) · 758 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
#include <iostream>
#include <string.h>
#include <conio.h>
using namespace std;
void catalogue();
int main()
{
cout << "<================================WELCOME TO SHOPPING MART ========================================>"
<< "\n"
<< " Enter your Choice\n\n"
<<"1.Browse Catalogue\n2.Login\n3.Register\n4.Exit";
int choice;
cin>>choice;
switch(choice)
{
case 1:catalogue();
break;
case 2:login();
break;
case 3:regiser();
break;
case 4:exit();
break;
}
}
void catalogue()
{
cout<<""
}