SlideShare a Scribd company logo
Aryabhatta International College
of Technical Education
Ajmer, Rajasthan
A
PROJECT REPORT
ON
Shopping mall Management: C++
Submitted in partial fulfilment for the
Award of the Degree of
BACHELOR OF COMPUTER APPLICATIONS
2017-2018
Submitted to:
Aryabhatta International College of Technical Education
Submitted by:
Harshita Bhargava
ACKNOWLEDGEMENT
I am thankful to Kriti Sankhla Ma’am for her valuable time she has devoted to
me and given me a lot of knowledge and help for the project. I am also thankful
to other teachers for their expert guidance. It was a great experience for me to
work and learn under their guidance.
Words defeat us in expressing our deep sense of gratitude for our friends, whose
continued resourceful support and guidance enabled me to overcome all the
challenges that I have faced while developing the project.
Harshita Bhargava
SHOPPING MALL MANAGEMENT
#include<iostream.h>
#include<graphics.h>
#include<conio.h>
#include<string.h>
#include<stdlib.h>
class mart
{
private:
int op,ch,cat;
public:
void shop();
void menu();
};
void mart::shop()
{
cout<<endl<<endl<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ +"<<endl;
cout<<"+ V SHOPPING MART
+"<<endl;
cout<<"+ Naya Bazar,
+"<<endl;
cout<<"+ Ajmer +"<<endl;
cout<<"+
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ BILLING MANAGEMENT SYSTEM
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" Press any key to Continue....";
getch();
}
void mart::menu()
{
clrscr();
cout<<endl<<endl;
JJ:
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ MAIN MENU
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"1.Admin Panel"<<endl;
cout<<"2.Exit"<<endl;
cout<<"Choose your option(1/2):";
cin>>op;
clrscr();
if(op==1)
{
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ LOGIN
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
int pass=1234,pass1;
char log[20]="harshi";
char log1[20];
x: cout<<"Login Id:";
cin>>log1;
if(strcmp(log,log1)!=0)
{
cout<<"Re-enter your login....";
goto x;
}
y: cout<<"Password:";
cin>>pass1;
if(pass1!=pass)
{
cout<<"Re-enter your password....";
goto y;
}
TT: KK: XX: SS: VV: clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ ADMIN PANEL
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"1.Create Product(Add Product)"<<endl;
cout<<"2.Display All Product"<<endl;
cout<<"3.Query Product"<<endl;
cout<<"4.Modify Product"<<endl;
cout<<"5.Delete Product"<<endl;
cout<<"6.Selling/Billing the Product"<<endl;
cout<<"7.Back to Main Menu"<<endl;
cout<<"Enter your choice(1/2/3/4/5/6/7):";
cin>>ch;
clrscr();
if(ch==1)
{
II: clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ CREATE PRODUCT
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"1.Clothing"<<endl;
cout<<"2.Electronics and Home Appliances"<<endl;
cout<<"3.Furniture"<<endl;
cout<<"4.Footware"<<endl;
cout<<"5.Fashion Accessories"<<endl;
cout<<"6.Stationery"<<endl;
cout<<"7.Back to Previous Page"<<endl;
cout<<"Which catagory you want to choose(1/2/3/4/5/6/7):";
cin>>cat;
char p_name[30],c[30],s[10],color[30];
int p;
if(cat==1)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ CLOTHING
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Size:";
cin>>s;
cout<<"Price:";
cin>>p;
cout<<"Product Added..."<<endl;
cout<<"Press any key to go back...";
getch();
goto II;
}
else if(cat==2)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ ELECTRONICS AND
HOME APPLIANCES +"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Price:";
cin>>p;
cout<<"Product Added..."<<endl;
cout<<"Press any key to go back...";
getch();
goto II;
}
else if(cat==3)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FURNITURE
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Price:";
cin>>p;
cout<<"Product Added..."<<endl;
cout<<"Press any key to go back...";
getch();
goto II;
}
else if(cat==4)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FOOTWEAR
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Price:";
cin>>p;
cout<<"Product Added..."<<endl;
cout<<"Press any key to go back...";
getch();
goto II;
}
else if(cat==5)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FASHION
ACCESSORIES +"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Price:";
cin>>p;
cout<<"Product Added..."<<endl;
cout<<"Press any key to go back...";
getch();
goto II;
}
else if(cat==6)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ STATIONERY
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Price:";
cin>>p;
cout<<"Product Added..."<<endl;
cout<<"Press any key to go back...";
getch();
goto II;
}
else if(cat==7)
{
goto TT;
}
}
else if(ch==2)
{
ZZ:clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ DISPLAY ALL PRODUCT
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
QQ: cout<<"1.Clothing"<<endl;
cout<<"2.Electronics and Home Appliances"<<endl;
cout<<"3.Furniture"<<endl;
cout<<"4.Footware"<<endl;
cout<<"5.Fashion Accessories"<<endl;
cout<<"6.Stationery"<<endl;
cout<<"7.Back to Previous Page"<<endl;
cout<<"Which catagory you want to choose(1/2/3/4/5/6/7):";
cin>>cat;
if(cat==1)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ CLOTHING
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME CATAGORY
SIZE PRICE"<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<" Jeans Men L,XL,XXL
500 "<<endl;
cout<<" T-Shirt Men
L,XL,XXL 400 "<<endl;
cout<<" Shirt Men L,XL,XXL
500 "<<endl<<endl;
cout<<" Kurti Women S,M,L,XL,XXL
200 "<<endl;
cout<<" Top Women S,M,L,XL,XXL
200 "<<endl;
cout<<" Jeans/Jeggings Women
M,L,XL,XXL 600 "<<endl;
cout<<" Ethnics Women
L,XL,XXL 2000"<<endl<<endl;
cout<<" Froks Kids S,M
400 "<<endl;
cout<<" Kepri Tops Kids S,M
600 "<<endl;
cout<<" Jeans Tops Kids S,M
700 "<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<"Press any key to go back..";
getch();
goto ZZ;
}
else if(cat==2)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ ELECTRONICS AND
HOME APPLIANCES +"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME CATAGORY
COLOUR PRICE"<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<" Mobiles Electronics All
5000 "<<endl;
cout<<" Laptops Electronics All
7000 "<<endl;
cout<<" TV Electronics All
5000 "<<endl;
cout<<" Speakers Electronics Black
2000 "<<endl;
cout<<" Computers Electronics Black
10000"<<endl<<endl;
cout<<" Washing Machine Home All
6000 "<<endl;
cout<<" Cooler Home All
2000 "<<endl<<endl;
cout<<" Refrigerator Home All
4000 "<<endl;
cout<<" Mixer Grinder Home All
1000 "<<endl;
cout<<" Blender Home All
200 "<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<"Press any key to go back..";
getch();
goto ZZ;
}
else if(cat==3)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FURNITURE
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME CATAGORY
COLOR PRICE"<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<" Sofa Wooden Black,Wooden
15000 "<<endl;
cout<<" Bed Wooden Black,Wooden
10400 "<<endl;
cout<<" Almirah Wooden All
5000 "<<endl;
cout<<" Chair Wooden All
200 "<<endl;
cout<<" Table Wooden All 200
"<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<"Press any key to go back..";
getch();
goto ZZ;
}
else if(cat==4)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FOOTWEAR
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME CATAGORY
COLOUR PRICE"<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<" Shoes Men,Women,Kid All
500 "<<endl;
cout<<" Sandals Men,Women,Kid All
1000 "<<endl;
cout<<" Slippers Men,Women,Kid All
100 "<<endl;
cout<<" Loafers Men,Women,Kid
All 200 "<<endl;
cout<<" Bellies Women,Kid All
200 "<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<"Press any key to go back..";
getch();
goto ZZ;
}
else if(cat==5)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FASHION
ACCESSORIES +"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME
PRICE"<<endl;
cout<<"==============================================
==============="<<endl;
cout<<" Bracelates 50 "<<endl;
cout<<" Earrings 50 "<<endl;
cout<<" Lockets 10 "<<endl;
cout<<" Necklaces 200 "<<endl;
cout<<" Rings 20 "<<endl;
cout<<"==============================================
==============="<<endl;
cout<<"Press any key to go back..";
getch();
goto ZZ;
}
else if(cat==6)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ STATIONERY
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME
PRICE"<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<" Pen 5 "<<endl;
cout<<" Pencil 25 "<<endl;
cout<<" Eraser 5"<<endl;
cout<<" Ruler 5 "<<endl;
cout<<" Notebook 20 "<<endl;
cout<<" Registe 20 "<<endl;
cout<<" Sketch Pen 30 "<<endl;
cout<<" Color Pencil 30 "<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<"Press any key to go back..";
getch();
goto ZZ;
}
else if(cat==7)
{
goto XX;
}
}
else if(ch==3)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ QUERY ALL PRODUCT
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
goto QQ;
}
else if(ch==4)
{
PP: clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ MODIFY PRODUCT
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"1.Clothing"<<endl;
cout<<"2.Electronics and Home Appliances"<<endl;
cout<<"3.Furniture"<<endl;
cout<<"4.Footware"<<endl;
cout<<"5.Fashion Accessories"<<endl;
cout<<"6.Stationery"<<endl;
cout<<"7.Back to Previous Page"<<endl;
cout<<"Which catagory you want to choose(1/2/3/4/5/6/7):";
cin>>cat;
char p_name[30],c[30],s[10],color[30];
int p;
if(cat==1)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ CLOTHING
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Size:";
cin>>s;
cout<<"Price:";
cin>>p;
cout<<"Product Modified..."<<endl;
cout<<"Press any key to go back...";
getch();
goto PP;
}
else if(cat==2)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ ELECTRONICS AND
HOME APPLIANCES +"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Price:";
cin>>p;
cout<<"Product Modified..."<<endl;
cout<<"Press any key to go back...";
getch();
goto PP;
}
else if(cat==3)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FURNITURE
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Price:";
cin>>p;
cout<<"Product Modified..."<<endl;
cout<<"Press any key to go back...";
getch();
goto PP;
}
else if(cat==4)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FOOTWEAR
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Price:";
cin>>p;
cout<<"Product Modified..."<<endl;
cout<<"Press any key to go back...";
getch();
goto PP;
}
else if(cat==5)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FASHION
ACCESSORIES +"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Price:";
cin>>p;
cout<<"Product Modified..."<<endl;
cout<<"Press any key to go back...";
getch();
goto PP;
}
else if(cat==6)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ STATIONERY
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Price:";
cin>>p;
cout<<"Product Modified..."<<endl;
cout<<"Press any key to go back...";
getch();
goto PP;
}
else if(cat==7)
{
goto KK;
}
}
else if(ch==5)
{
MM: clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ DELETE PRODUCT
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"1.Clothing"<<endl;
cout<<"2.Electronics and Home Appliances"<<endl;
cout<<"3.Furniture"<<endl;
cout<<"4.Footware"<<endl;
cout<<"5.Fashion Accessories"<<endl;
cout<<"6.Stationery"<<endl;
cout<<"7.Back to Previous Page"<<endl;
cout<<"Which catagory you want to choose(1/2/3/4/5/6/7):";
cin>>cat;
char p_name[30],c[30],s[10],color[30];
int p;
if(cat==1)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ CLOTHING
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Size:";
cin>>s;
cout<<"Price:";
cin>>p;
cout<<"Product Deleted..."<<endl;
cout<<"Press any key to go back...";
getch();
goto MM;
}
else if(cat==2)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ ELECTRONICS AND
HOME APPLIANCES +"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Price:";
cin>>p;
cout<<"Product Deleted..."<<endl;
cout<<"Press any key to go back...";
getch();
goto MM;
}
else if(cat==3)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FURNITURE
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Price:";
cin>>p;
cout<<"Product Deleted..."<<endl;
cout<<"Press any key to go back...";
getch();
goto MM;
}
else if(cat==4)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FOOTWEAR
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Price:";
cin>>p;
cout<<"Product Deleted..."<<endl;
cout<<"Press any key to go back...";
getch();
goto MM;
}
else if(cat==5)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FASHION
ACCESSORIES +"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Price:";
cin>>p;
cout<<"Product Deleted..."<<endl;
cout<<"Press any key to go back...";
getch();
goto MM;
}
else if(cat==6)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ STATIONERY
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"Product name:";
cin>>p_name;
cout<<"Price:";
cin>>p;
cout<<"Product Deleted..."<<endl;
cout<<"Press any key to go back...";
getch();
goto MM;
}
else if(cat==7)
{
goto SS;
}
}
else if(ch==6)
{
FF: clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ SELLING/BILLING PRODUCT
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<"1.Clothing"<<endl;
cout<<"2.Electronics and Home Appliances"<<endl;
cout<<"3.Furniture"<<endl;
cout<<"4.Footware"<<endl;
cout<<"5.Fashion Accessories"<<endl;
cout<<"6.Stationery"<<endl;
cout<<"7.Back to Previous Page"<<endl;
cout<<"Which catagory you want to choose(1/2/3/4/5/6/7):";
cin>>cat;
char p_name[30],c[30],s[10],color[30];
int p,p_no,q,b;
if(cat==1)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ CLOTHING
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME CATAGORY
SIZE PRICE "<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<" Jeans Men L,XL,XXL
500 "<<endl;
cout<<" T-Shirt Men
L,XL,XXL 400 "<<endl;
cout<<" Shirt Men L,XL,XXL
500 "<<endl<<endl;
cout<<" Kurti Women S,M,L,XL,XXL
200 "<<endl;
cout<<" Top Women S,M,L,XL,XXL
200 "<<endl;
cout<<" Jeans/Jeggings Women
M,L,XL,XXL 600 "<<endl;
cout<<" Ethnics Women
L,XL,XXL 2000 "<<endl<<endl;
cout<<" Froks Kids S,M
400 "<<endl;
cout<<" Kepri Tops Kids S,M
600 "<<endl;
cout<<" Jeans Tops Kids S,M
700 "<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<"Product no:";
cin>>p_no;
cout<<"Catagory:";
cin>>c;
cout<<"Size:";
cin>>s;
cout<<"Quantity:";
cin>>q;
if(p_no==1)
{
b=500*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==2)
{
b=400*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==3)
{
b=500*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==4)
{
b=200*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==5)
{
b=200*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==6)
{
b=600*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==7)
{
b=2000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==8)
{
b=400*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==9)
{
b=600*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==10)
{
b=700*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
}
else if(cat==2)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ ELECTRONICS AND
HOME APPLIANCES +"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME CATAGORY
COLOUR PRICE"<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<" Mobiles Electronics All
5000 "<<endl;
cout<<" Laptops Electronics All
7000 "<<endl;
cout<<" TV Electronics All
5000 "<<endl;
cout<<" Speakers Electronics Black
2000 "<<endl;
cout<<" Computers Electronics Black
10000 "<<endl<<endl;
cout<<" Washing Machine ElectronicsAll
600 "<<endl;
cout<<" Cooler Home All
2000 "<<endl<<endl;
cout<<" Refrigerator Home All
4000 "<<endl;
cout<<" Mixer Grinder Home All
1000 "<<endl;
cout<<" Blender Home All
200 "<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<"Product no:";
cin>>p_no;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Quantity:";
cin>>q;
if(p_no==1)
{
b=5000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==2)
{
b=7000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==3)
{
b=5000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==4)
{
b=2000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==5)
{
b=10000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==6)
{
b=6000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==7)
{
b=2000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==8)
{
b=4000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==9)
{
b=1000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==10)
{
b=2000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
}
else if(cat==3)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FURNITURE
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME CATAGORY
COLOR PRICE"<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<" Sofa Wooden Black,Wooden
15000 "<<endl;
cout<<" Bed Wooden Black,Wooden
10400 "<<endl;
cout<<" Almirah Wooden All
5000 "<<endl;
cout<<" Chair Wooden All
200 "<<endl;
cout<<" Table Wooden All 200
"<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<"Product no:";
cin>>p_no;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Quantity:";
cin>>q;
if(p_no==1)
{
b=15000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==2)
{
b=10400*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==3)
{
b=5000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==4)
{
b=200*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==5)
{
b=200*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
}
else if(cat==4)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FOOTWEAR
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME CATAGORY
COLOUR PRICE"<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<" Shoes Men,Women,Kid All
500 "<<endl;
cout<<" Sandals Men,Women,Kid All
1000 "<<endl;
cout<<" Slippers Men,Women,Kid All
100 "<<endl;
cout<<" Loafers Men,Women,Kid
All 200 "<<endl;
cout<<" Bellies Women,Kid All
200 "<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<"Product no:";
cin>>p_no;
cout<<"Catagory:";
cin>>c;
cout<<"Colour:";
cin>>color;
cout<<"Quantity:";
cin>>q;
if(p_no==1)
{
b=500*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==2)
{
b=1000*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==3)
{
b=100*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==4)
{
b=200*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==5)
{
b=200*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
}
else if(cat==5)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ FASHION
ACCESSORIES +"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME
PRICE"<<endl;
cout<<"==============================================
==============="<<endl;
cout<<" Bracelates 50 "<<endl;
cout<<" Earrings 50 "<<endl;
cout<<" Lockets 10 "<<endl;
cout<<" Necklaces 200 "<<endl;
cout<<" Rings 20 "<<endl;
cout<<"==============================================
==============="<<endl;
cout<<"Product no:";
cin>>p_no;
cout<<"Quantity:";
cin>>q;
if(p_no==1)
{
b=50*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==2)
{
b=50*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==3)
{
b=10*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==4)
{
b=200*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==5)
{
b=20*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
}
else if(cat==6)
{
clrscr();
cout<<endl<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl;
cout<<"+ STATIONERY
+"<<endl;
cout<<"+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
+=+=+=+=+=+=+=+=+=++=+=+=+=+=+=+"<<endl<<endl;
cout<<" PRODUCT NAME
PRICE"<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<" Pen 5 "<<endl;
cout<<" Pencil 2"<<endl;
cout<<" Eraser 5 "<<endl;
cout<<" Ruler 5 "<<endl;
cout<<" Notebook 20 "<<endl;
cout<<" Register 20 "<<endl;
cout<<" Sketch Pen 30 "<<endl;
cout<<" Color Pencil 30 "<<endl;
cout<<"==============================================
=================================="<<endl;
cout<<"Product no:";
cin>>p_no;
cout<<"Quantity:";
cin>>q;
if(p_no==1)
{
b=5*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==2)
{
b=25*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==3)
{
b=5*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==4)
{
b=5*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==5)
{
b=20*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==6)
{
b=20*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==7)
{
b=30*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
if(p_no==8)
{
b=30*q;
cout<<" BILL:"<<endl;
cout<<"Total Amount:"<<b<<endl;
cout<<"Press any key to go back..";
getch();
goto FF;
}
}
else if(cat==7)
{
goto VV;
}
}
else if(ch==7)
{
goto JJ;
}
else if (op==2)
{
exit(0);
}
}
}
void main()
{
clrscr();
mart obj;
obj.shop();
obj.menu();
getch();
}
Output :-
Created by:
Harshita Bhargava

More Related Content

Similar to Shopping mall management

Computer science class 12 project on Super Market Billing
Computer science class 12 project on Super Market BillingComputer science class 12 project on Super Market Billing
Computer science class 12 project on Super Market Billing
Harsh Kumar
 
Rajeev oops 2nd march
Rajeev oops 2nd marchRajeev oops 2nd march
Rajeev oops 2nd marchRajeev Sharan
 
computerscience-170129081612.pdf
computerscience-170129081612.pdfcomputerscience-170129081612.pdf
computerscience-170129081612.pdf
KiranKumari204016
 
Computer science investigatory project- computer shop
Computer science investigatory project- computer shopComputer science investigatory project- computer shop
Computer science investigatory project- computer shop
Yash Panwar
 
Computer Science Project on Management System
Computer Science Project on Management System Computer Science Project on Management System
Computer Science Project on Management System
SajidAli643
 
Online exam
Online examOnline exam
Online exam
HarshitaBhargava4
 
Casino Game
Casino GameCasino Game
Casino Game
RIDDHICHOUHAN2
 
Harsh Mathur, BCA-2 Year
Harsh Mathur, BCA-2 YearHarsh Mathur, BCA-2 Year
Harsh Mathur, BCA-2 Year
dezyneecole
 
Harsh Mathur project c++
Harsh Mathur project c++Harsh Mathur project c++
Harsh Mathur project c++
Harsh Mathur
 
Billing in a supermarket c++
Billing in a supermarket c++Billing in a supermarket c++
Billing in a supermarket c++
varun arora
 
c++ project
c++ projectc++ project
c++ project
Trish004
 
Casino_game
Casino_gameCasino_game
Casino_game
KrishanKantGupta5
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
Dezyneecole
 
Tic tac toe
Tic tac toeTic tac toe
Tic tac toe
HarshitaBhargava4
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
Dezyneecole
 
Computer Science investigatory project class 12
Computer Science investigatory project class 12Computer Science investigatory project class 12
Computer Science investigatory project class 12
Raunak Yadav
 
Penjualan swalayan
Penjualan swalayanPenjualan swalayan
Penjualan swalayan
Setiyo Agus Widjaja
 
programming in C++ report
programming in C++ reportprogramming in C++ report
programming in C++ report
vikram mahendra
 
C++ Programming - 1st Study
C++ Programming - 1st StudyC++ Programming - 1st Study
C++ Programming - 1st Study
Chris Ohk
 
Gaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third YearGaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third Year
dezyneecole
 

Similar to Shopping mall management (20)

Computer science class 12 project on Super Market Billing
Computer science class 12 project on Super Market BillingComputer science class 12 project on Super Market Billing
Computer science class 12 project on Super Market Billing
 
Rajeev oops 2nd march
Rajeev oops 2nd marchRajeev oops 2nd march
Rajeev oops 2nd march
 
computerscience-170129081612.pdf
computerscience-170129081612.pdfcomputerscience-170129081612.pdf
computerscience-170129081612.pdf
 
Computer science investigatory project- computer shop
Computer science investigatory project- computer shopComputer science investigatory project- computer shop
Computer science investigatory project- computer shop
 
Computer Science Project on Management System
Computer Science Project on Management System Computer Science Project on Management System
Computer Science Project on Management System
 
Online exam
Online examOnline exam
Online exam
 
Casino Game
Casino GameCasino Game
Casino Game
 
Harsh Mathur, BCA-2 Year
Harsh Mathur, BCA-2 YearHarsh Mathur, BCA-2 Year
Harsh Mathur, BCA-2 Year
 
Harsh Mathur project c++
Harsh Mathur project c++Harsh Mathur project c++
Harsh Mathur project c++
 
Billing in a supermarket c++
Billing in a supermarket c++Billing in a supermarket c++
Billing in a supermarket c++
 
c++ project
c++ projectc++ project
c++ project
 
Casino_game
Casino_gameCasino_game
Casino_game
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
 
Tic tac toe
Tic tac toeTic tac toe
Tic tac toe
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
 
Computer Science investigatory project class 12
Computer Science investigatory project class 12Computer Science investigatory project class 12
Computer Science investigatory project class 12
 
Penjualan swalayan
Penjualan swalayanPenjualan swalayan
Penjualan swalayan
 
programming in C++ report
programming in C++ reportprogramming in C++ report
programming in C++ report
 
C++ Programming - 1st Study
C++ Programming - 1st StudyC++ Programming - 1st Study
C++ Programming - 1st Study
 
Gaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third YearGaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third Year
 

Recently uploaded

AI Pilot Review: The World’s First Virtual Assistant Marketing Suite
AI Pilot Review: The World’s First Virtual Assistant Marketing SuiteAI Pilot Review: The World’s First Virtual Assistant Marketing Suite
AI Pilot Review: The World’s First Virtual Assistant Marketing Suite
Google
 
First Steps with Globus Compute Multi-User Endpoints
First Steps with Globus Compute Multi-User EndpointsFirst Steps with Globus Compute Multi-User Endpoints
First Steps with Globus Compute Multi-User Endpoints
Globus
 
Large Language Models and the End of Programming
Large Language Models and the End of ProgrammingLarge Language Models and the End of Programming
Large Language Models and the End of Programming
Matt Welsh
 
Using IESVE for Room Loads Analysis - Australia & New Zealand
Using IESVE for Room Loads Analysis - Australia & New ZealandUsing IESVE for Room Loads Analysis - Australia & New Zealand
Using IESVE for Room Loads Analysis - Australia & New Zealand
IES VE
 
Understanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSageUnderstanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSage
Globus
 
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdfDominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
AMB-Review
 
How Recreation Management Software Can Streamline Your Operations.pptx
How Recreation Management Software Can Streamline Your Operations.pptxHow Recreation Management Software Can Streamline Your Operations.pptx
How Recreation Management Software Can Streamline Your Operations.pptx
wottaspaceseo
 
Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
Paco van Beckhoven
 
Globus Compute wth IRI Workflows - GlobusWorld 2024
Globus Compute wth IRI Workflows - GlobusWorld 2024Globus Compute wth IRI Workflows - GlobusWorld 2024
Globus Compute wth IRI Workflows - GlobusWorld 2024
Globus
 
2024 RoOUG Security model for the cloud.pptx
2024 RoOUG Security model for the cloud.pptx2024 RoOUG Security model for the cloud.pptx
2024 RoOUG Security model for the cloud.pptx
Georgi Kodinov
 
RISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent EnterpriseRISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent Enterprise
Srikant77
 
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
informapgpstrackings
 
Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...
Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...
Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...
Anthony Dahanne
 
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERRORTROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
Tier1 app
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
Cyanic lab
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
takuyayamamoto1800
 
Accelerate Enterprise Software Engineering with Platformless
Accelerate Enterprise Software Engineering with PlatformlessAccelerate Enterprise Software Engineering with Platformless
Accelerate Enterprise Software Engineering with Platformless
WSO2
 
top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
vrstrong314
 
Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...
Globus
 
Into the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdfInto the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdf
Ortus Solutions, Corp
 

Recently uploaded (20)

AI Pilot Review: The World’s First Virtual Assistant Marketing Suite
AI Pilot Review: The World’s First Virtual Assistant Marketing SuiteAI Pilot Review: The World’s First Virtual Assistant Marketing Suite
AI Pilot Review: The World’s First Virtual Assistant Marketing Suite
 
First Steps with Globus Compute Multi-User Endpoints
First Steps with Globus Compute Multi-User EndpointsFirst Steps with Globus Compute Multi-User Endpoints
First Steps with Globus Compute Multi-User Endpoints
 
Large Language Models and the End of Programming
Large Language Models and the End of ProgrammingLarge Language Models and the End of Programming
Large Language Models and the End of Programming
 
Using IESVE for Room Loads Analysis - Australia & New Zealand
Using IESVE for Room Loads Analysis - Australia & New ZealandUsing IESVE for Room Loads Analysis - Australia & New Zealand
Using IESVE for Room Loads Analysis - Australia & New Zealand
 
Understanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSageUnderstanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSage
 
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdfDominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
 
How Recreation Management Software Can Streamline Your Operations.pptx
How Recreation Management Software Can Streamline Your Operations.pptxHow Recreation Management Software Can Streamline Your Operations.pptx
How Recreation Management Software Can Streamline Your Operations.pptx
 
Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
 
Globus Compute wth IRI Workflows - GlobusWorld 2024
Globus Compute wth IRI Workflows - GlobusWorld 2024Globus Compute wth IRI Workflows - GlobusWorld 2024
Globus Compute wth IRI Workflows - GlobusWorld 2024
 
2024 RoOUG Security model for the cloud.pptx
2024 RoOUG Security model for the cloud.pptx2024 RoOUG Security model for the cloud.pptx
2024 RoOUG Security model for the cloud.pptx
 
RISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent EnterpriseRISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent Enterprise
 
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
 
Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...
Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...
Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...
 
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERRORTROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
 
Accelerate Enterprise Software Engineering with Platformless
Accelerate Enterprise Software Engineering with PlatformlessAccelerate Enterprise Software Engineering with Platformless
Accelerate Enterprise Software Engineering with Platformless
 
top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
 
Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...
 
Into the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdfInto the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdf
 

Shopping mall management