SlideShare a Scribd company logo
1 of 39
Gandhinahar
Ranchi
Uttam Kumar Gupta of Std. XII would like
to express my sincere thanks to my
computer teacher “Amit Sir” for assigning
me this project. I feel extremely lucky to
have been given a golden chance or
opportunity to work under such a highly
experienced teacher.
Secondly I would also like to thank all my
family members without whose support it
was impossible for me to complete this
project.
Last but not least I would also like to
thank all my friends provided me some
suggestion in completing this project.
Thank You!
1.
A computer shop management system sells various types of
hardware and software accessories such as Laptop, Antivirus
and Keyboard etc. It’s very hard for the shopkeeper to
remember their cost price and in what price these items to
be sold. As the market goes up and down for various
products daily, so there should be some proper medium
through which prices of these items can be changed
frequently without any problem. There are many customers
who will make their payment online, so there should be a
medium to take their credit card as input and reduce exact
amount from their account. This computer shop
management system will enable its user’s keep their
customers report secure, so that next time these customers
when arrive to their shop, do not have to enter their details
again. Buyers will also able to select products options while
purchasing through computer screen and can make their
payment from that particular screen and pick up their
materials which they have selected at the pickup center
within the shop.
#include<fstream.h> //forreadingandwritingfiles
#include<conio.h> //forclrscr()
#include<string.h> //forstringcharacters
#include<stdio.h> //forgetsand putsfunction
#include<process.h> //forexitfunction
#include<iomanip.h> //forsetwfunction
#include<dos.h> //fordelayand sleepfunction
#include<graphics.h> //fortextcolor& textbackground
classconsumer
{
intcno;
char cname[20];
char adress[20];
inta,b,c;
floati;
public:
//FUNCTION TOENTER THE VALUES
public:
voidentry()
{
clrscr();
textcolor(RED);
gotoxy(32,4);
cputs("S.T.A.RCOMPUTERS");
gotoxy(5,8);
cputs("CustomerID:");
gotoxy(5,10);
cputs("Customername :");
gotoxy(5,12);
cputs("Customeradress:");
gotoxy(5,14);
cputs("CustomerService number:");
gotoxy(5,16);
cputs("CostumerSmartcardnumber:");
gotoxy(5,18);
cputs("CostumerPhonenumber:");
gotoxy(5,20);
cputs("CustomerBillnumber:");
gotoxy(45,8);
cin>>cno;
gotoxy(45,10);
gets(cname);
gotoxy(45,12);
gets(adress);
gotoxy(45,14);
cin>>a;
gotoxy(45,16);
cin>>b;
gotoxy(45,18);
cin>>c;
gotoxy(45,20);
cin>>i;
}
//FUNCTION TODISPLAYTHE VALUES
voiddisplay()
{
cout<<"nn";
gotoxy(5,8);
cputs("CustomerID:");
cout<<cno;
gotoxy(5,10);
cputs("Customername :");
puts(cname);
gotoxy(5,12);
cout<<"Customeradress:"<<adress;
gotoxy(5,14);
cout<<"CustomerService number:"<<a;
gotoxy(5,16);
cout<<"CostumerSmart card number:"<<b;
gotoxy(5,18);
cout<<"CostumerPhone number:"<<c;
gotoxy(5,20);
cout<<"CustomerBill number:"<<i<<"n";
}
intrcno()
{
returncno;
}
}c;
//FUNCTION TOWRITE THE VALUES
voidwrite()
{
char ch;
consumerc;
fstreamf1;
c.entry();
f1.open("main.dat",ios::app|ios::binary);
cout<<"nntDOyouwantto save the record(y/n)t";
cin>>ch;
if(ch=='y')
{
f1.write((char*)&c,sizeof(c));
}
f1.close();
}
//FUNCTION TOREAD THE VALUES
voidread()
{
consumerc;
fstreamf1;
f1.open("main.dat",ios::in|ios::binary);
while(!f1.eof())
{
f1.read((char*)&c,sizeof(c));
c.display();
if(f1.eof())
{
cout<<"nn End of the file reachednn";
}
}
f1.close();
}
//FUNCTION FORSEARCHINGTHE RECORD
voidsearch()
{
consumerc;
intrn;
char found='n';
ifstreamf1("main.dat",ios::in);
cout<<"nnEnter CustomerIDyouwant to SEARCH :t";
cin>>rn;
while(!f1.eof())
{
f1.read((char*)&c,sizeof(c));
if(c.rcno()==rn)
{
c.display();
found='y';
break;
}
}
if(found=='n')
cout<<"nntRECORDNOTFOUND!!!!!!!!!!!!!n"<<endl;
f1.close();
}
//FUNCTION TODELELTE THE RECORD
voiddel()
{
ifstreamf1("main.dat",ios::in);
ofstreamf2("temp.dat",ios::out);
intrno;
char found='f',confirm='n';
cout<<"nnEnter CustomerIDyouwant to DELETE :t";
cin>>rno;
while(!f1.eof())
{
f1.read((char*)&c,sizeof(c));
if(c.rcno()==rno)
{
c.display();
found='t';
cout<<"nnAre you sure wantto DELETE thisrecord? (y/n)t";
cin>>confirm;
if(confirm=='n')
f2.write((char*)&c,sizeof(c));
}
else
f2.write((char*)&c,sizeof(c));
}
if(found=='f')
cout<<"nntRECORDNOTFOUNDn";
f1.close();
f2.close();
remove("main.dat");
rename("temp.dat","main.dat");
f1.open("main.dat",ios::in);
clrscr();
cout<<"nnnNowthe file containsnnn";
while(!f1.eof())
{
f1.read((char*)&c,sizeof(c));
if(f1.eof())
c.display();
}
f1.close();
}
//FUNCTION TOMODIFY THE RECORD
voidupdate()
{
fstreamf1("main.dat",ios::in|ios::out|ios::binary);
intrno;
longpos;
char found='f';
cout<<"nnEnter the CustomerIDyou wantto MODIFY :t";
cin>>rno;
while(!f1.eof())
{
pos=f1.tellg();
f1.read((char*)&c,sizeof(c));
if(c.rcno()==rno)
{
c.entry();
f1.seekg(pos);
f1.write((char*)&c,sizeof(c));
found='t';
break;
}
}
if(found=='f')
cout<<"nntRECORDNOTFOUNDn";
f1.seekg(0);
clrscr();
cout<<"n Nowthe file containsnn";
c.display();
f1.close();
getch();
}
//STARTINGOFTHE VOIDMAIN
voidmain()
{
textbackground(LIGHTBLUE);
unsignedintsum,add,d,j,e,f,g,h,k,l,w,x,y,z,choice;
intabis=0,apep=0,aden=0,amun=0,aperk=0,acoc=0,atit=0,alux=0,atid=0,aree=0;
unsignedintm=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0;
int
pend=0,print=0,graph=0,ram=0,hard=0,win=0,ant=0,p1=0,p2=0,g1=0,r1=0,h1=0,w1=0,an1=0,mo=0,
mous=0,web=0,aweb=0,asc=0,scan=0,total=0;
char pu,str[10],yes,et;
clrscr();
// WELCOME SCREEN
clrscr();
lab:;
clrscr();
cout<<"nnnnnnnnnnnnnnntttt The legendaryn";
cout<<"nnttttMICHAELJACKSONnnn";
cout<<"tttt Kingof POPnnn";
cout<<"ttt Born On -:29 AUGUST ,GARY,INDIANAnnn";
cout<<"ttt DiedOn -:25 JUNE ,LOSANGELESnnn";
cout<<"t OCCUPATION -:DANCER,BUSSINESSMAN,SONG
WRITER,SINGER,ACTORnnn";
getch();
clrscr();
cout<<"nnnnnnnnnnnnnnnttttWELCOMEnn";
cout<<"tttt TOnn";
cout<<"tttt THEnn";
cout<<"ttt WORLD OF C++n";
getch();
clrscr();
pass:;
cout<<"nntPLEASEBECAREFUL ENTER THE PASSWORDIN SMALL LETTERSn";
cout<<"nttPASSWORDDOESNOTCONTAINSANYNUMBERnnn";
cout<<"nntttEnteryourPasswordt";
str[0]=getch();
cout<<"*";
str[1]=getch();
cout<<"*";
str[2]=getch();
cout<<"*";
str[3]=getch();
cout<<"*";
str[4]=getch();
cout<<"*";
str[5]=getch();
cout<<"*";
str[6]=getch();
cout<<"*";
cputs("PRESSENTERTO CONTINUE!!!!!!");
getch();
clrscr();
//DETAILSOF THIS PROJECT
gotoxy(25,10);
textcolor(RED);
cputs("WELCOME TO THE WORLD OF COMPUTERS .");
gotoxy(5,15);
cputs("THISPROJECTCONTAINSSOMEITEMS ANDSIMPLE THING YOU HAVE TO DO IS:-");
gotoxy(5,17);
cputs("ENTERTHE NAME , CUSTOMER ID , SERIAL NUMBER , SMART CARD NUMBER etc.");
gotoxy(5,19);
cputs("THEN PURCHASE THE ITEMS ANDREMEMBER THE QUANTITY ITEMS CARRY.");
gotoxy(5,21);
cputs("YOUCAN ALSO MODIFY , DELETE , SEARCH A RECORD.");
gotoxy(5,23);
cputs("YOUCAN ALSO ALL RECORDS YOU HAVE ENTERED IN YOUR COMPUTER.");
gotoxy(5,25);
cputs("BUTDO NOTEXPECT FOR ANYDISCOUNT.");
gotoxy(5,27);
cputs("WEHOPE THAT YOU WILL BE SATISFIEDWITH OUR SERVICE.");
gotoxy(5,29);
cputs("WEARE NOT RESPONSIBLEFORANY DEFECT IN THE PRODUCT YOU PURCHASE.");
getch();
clrscr();
if(yes=='y')
{
clrscr();
goto items;
}
else
{
clrscr();
goto cash;
}
}
if(choice==4)
{
mun:;
clrscr();
cout<<"nnttttWEBCAMnn";
cout<<"n ITEMStttttRATEn";
cout<<"n 1.5 PIXELttttt1500n";
cout<<" 2.8 PIXELttttt6000n";
cout<<" 3.12 PIXELttttt12000n";
cout<<"nntWhichWEBCAMyou wantto purchaset";
cin>>web;
if(web==1)
{
aweb=1500;
}
else if(web==2)
{
aweb=6000;
}
else if(web==3)
{
aweb=12000;
}
else if(web==0)
{
goto items;
}
else if(web!=1||web!=2||web!=3)
{
cout<<"nntOOPS!!!!!!! Wrongchoicenn";
getch();
goto mun;
}
cout<<"nntWEBCAM(MAX5):t";
cin>>p;
if(p>5)
{
cout<<"nntEnterQuantitySmallerthan5";
getch();
goto items;
}
else
amun=1000-p;
cout<<"ntDOyouwant to purchase more(y/n)";
cin>>yes;
if(yes=='y')
{
clrscr();
goto items;
}
else
{
clrscr();
goto cash;
}
}
if(choice==5)
{
park:;
clrscr();
cout<<"nnttttGRAPHICCARDnn";
cout<<"n ITEMStttttRATEn";
cout<<"n 1. 32 bitttttt5000n";
cout<<" 2. 64 bitttttt8000n";
cout<<"nntWhichGRAPHICCARDyouwant to purchaset";
cin>>g1;
if(g1==1)
{
graph=5000;
}
else if(g1==2)
{
graph=8000;
}
else if(g1==0)
{
goto items;
}
else if(g1!=1||g1!=2)
{
cout<<"nntOOPS!!!!!!! Wrongchoicenn";
getch();
goto park;
}
cout<<"ntGRAPHICCARD(MAX5):t";
cin>>q;
if(q>5)
{
cout<<"nntEnterQuantitySmallerthan5";
getch();
goto items;
}
else
aperk=500-q;
cout<<"ntDOyouwant to purchase more(y/n)";
cin>>yes;
if(yes=='y')
{
clrscr();
goto items;
}
else
{
clrscr();
goto cash;
}
}
if(choice==6)
{
coco:;
clrscr();
cout<<"nnttttRAMnn";
cout<<"n ITEMStttttRATEn";
cout<<"n 1. 1GBttttt2000n";
cout<<" 2. 2GBttttt4000n";
cout<<"nntWhichRAMyouwant to purchaset";
cin>>r1;
if(r1==1)
{
ram=2000;
}
else if(r1==2)
{
ram=4000;
}
else if(r1==0)
{
goto items;
}
else if(r1!=1||r1!=2)
{
cout<<"nntOOPS!!!!!!! Wrongchoicenn";
getch();
goto coco;
}
cout<<"ntRAM(MAX2): ";
cin>>r;
if(r>2)
{
cout<<"nntEnterQuantitySmallerthan2";
getch();
goto items;
}
else
acoc=400-r;
cout<<"ntDOyouwant to purchase more(y/n)";
cin>>yes;
if(yes=='y')
{
clrscr();
goto items;
}
else
{
clrscr();
goto cash;
}
}
if(choice==7)
{
titan:;
clrscr();
cout<<"nnttttHARDDISKnn";
cout<<"n ITEMStttttRATEn";
cout<<"n 1. 20GBttttt1500n";
cout<<" 2. 50GBttttt2000n";
cout<<" 3. 80GBttttt3000n";
cout<<" 4. 160GBttttt5000n";
cout<<" 5. 320GBttttt8000n";
cout<<"nntWhichHARDDISKyou wantto purchaset";
cin>>h1;
if(h1==1)
{
hard=1500;
}
else if(h1==2)
{
hard=2000;
}
else if(h1==3)
{
hard=3000;
}
else if(h1==4)
{
hard=5000;
}
else if(h1==5)
{
hard=8000;
}
else if(h1==0)
{
goto items;
}
else if(h1!=1||h1!=2||h1!=3||h1!=4||h1!=5)
{
cout<<"nntOOPS!!!!!!! Wrongchoicenn";
getch();
goto titan;
}
cout<<"ntHARDDISK(MAX5):t";
cin>>s;
if(s>5)
{
cout<<"nntEnterQuantitySmallerthan5";
getch();
goto items;
}
else
atit=100-s;
cout<<"ntDOyouwant to purchase more(y/n)";
cin>>yes;
if(yes=='y')
{
clrscr();
goto items;
}
else
{
clrscr();
goto cash;
}
}
if(choice==8)
{
lux:;
clrscr();
cout<<"nnttttWINDOWSORIGINALCD'Snn";
cout<<"n ITEMSttttRATEn";
cout<<"n 1. 98ttttt1500n";
cout<<" 2. 2000tttt2000n";
cout<<" 3. XPttttt4000n";
cout<<" 4. VISTAtttt8000n";
cout<<" 5. windows7tttt11000n";
cout<<"nntWhichWINDOWSCDyouwant to purchaset";
cin>>w1;
if(w1==1)
{
win=1500;
}
else if(w1==2)
{
win=2000;
}
else if(w1==3)
{
win=4000;
}
else if(w1==4)
{
win=8000;
}
else if(w1==5)
{
win=11000;
}
else if(w1==0)
{
goto items;
}
else if(w1!=1||w1!=2||w1!=3||w1!=4||w1!=5)
{
cout<<"nntOOPS!!!!!!!Wrongchoicenn";
getch();
goto lux;
}
cout<<"ntWINDOWSORIGINALCD(MAX5):t";
cin>>t;
if(t>5)
{
cout<<"nntEnterQuantitySmallerthan5";
getch();
goto items;
}
else
alux=1000-t;
cout<<"ntDOyouwant to purchase more(y/n)";
cin>>yes;
if(yes=='y')
{
clrscr();
goto items;
}
else
{
clrscr();
goto cash;
}
}
if(choice==9)
{
tid:;
clrscr();
cout<<"nnttttANTIVIRUSnn";
cout<<"n ITEMSttttRATEn";
cout<<"n 1. NORTONtttt1500n";
cout<<" 2. AVIRAtttt1200n";
cout<<" 3. QUICKHEALtttt1300n";
cout<<"nntWhichANTIVIRUSyouwanttopurchaset";
cin>>an1;
if(an1==1)
{
ant=1500;
}
else if(an1==2)
{
ant=1200;
}
else if(an1==3)
{
ant=1300;
}
else if(an1==0)
{
goto items;
}
else if(an1!=1||an1!=2||an1!=3)
{
cout<<"nntOOPS!!!!!!!Wrongchoicenn";
getch();
goto tid;
}
cout<<"ntANTIVIRUS(MAX5):";
cin>>u;
if(u>5)
{
cout<<"nntEnterQuantitySmallerthan5";
getch();
goto items;
}
else
atid=1000-u;
cout<<"ntDOyouwant to purchase more(y/n)";
cin>>yes;
if(yes=='y')
{
clrscr();
goto items;
}
else
{
clrscr();
goto cash;
}
}
if(choice==10)
{
ree:;
clrscr();
cout<<"nnttttMOUSEnn";
cout<<"n ITEMSttttRATEn";
cout<<"n 1.BALL MOUSEtttt150n";
cout<<" 2.LASER MOUSEtttt300n";
cout<<"nntWhichMOUSE doyou wantto purchaset";
cin>>mous;
if(mous==1)
{
mo=150;
}
else if(mous==2)
{
mo=300;
}
else if(mous==0)
{
goto items;
}
else if(mous!=1||mous!=2)
{
cout<<"nntOOPS!!!!!!!Wrongchoicenn";
getch();
goto ree;
}
cout<<"ntMOUSE(MAX2):t ";
cin>>v;
if(v>2)
{
cout<<"nntEnterQuantitySmallerthan2";
getch();
goto items;
}
else
aree=300-v;
cout<<"ntDOyouwant to purchase more(y/n)";
cin>>yes;
if(yes=='y')
{
clrscr();
goto items; //GOBACKTO PURCHASELIST
}
else
{
clrscr();
goto cash; //TO DISPLAYBILL
}
}
cout<<"nnn";
clrscr();
cash:;
cout<<"nnnnnnttttS.T.A.RCOMPUTERSn";
cout<<"nntttt CASH MEMOn";
cout<<"nnnnnnnn";
cout<<"tt # TIMING: 11 AM TO 02 PM & 03 PM TO 05 PM n";
cout<<"tt # SHOP WILL CLOSED ON TUESDAY. n";
cout<<"tt # GOODS ONCESOLD WILL NOTBE EXCHANGED/REPLACED. n";
cout<<"tt # TAKE YOUR SMART CARDWITH YOU. n";
cout<<"tt # COLLECT YOUR SMART CARD & BILL AFTERPAYMENT. n";
cout<<"tt # DO NOT BREAKANY SHOPITEMS. n";
cout<<"tt # FOR ANYCOMPLAINTCONTACTTHE CHAIRPERSON. n";
cout<<"tt # 25 YEARS OF EXPERIENCE. n";
cout<<"tt # CHAIR PERSON :- MR. BHAVISHAYNIGAM. n";
cout<<"tt # AN ISO 9001-2000 CERTIFIED COMPANY. n";
cout<<"tt # WELL QUALIFIED STAFFMEMBERS. n";
cout<<"tt # Email :- www.star_computers.com n";
cout<<"nt%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%nn";
getch();
clrscr();
goto again;
case 3:
//TO SEARCHTHE RECORDS
clrscr();
search();
getch();
goto again;
case 4:
//TO DELETE THE RECORDS
clrscr();
del();
getch();
goto again;
case 5:
//TO MODIFY THE RECORDS
clrscr();
update();
getch();
goto again;
case 6:
//TO DISPLAYALL SAVEDRECORDS
{
clrscr();
read();
getch();
goto again;
}
case 7:
//TO DISPLAYTHE QUANTITY AVAILABLEIN THE SHOP
clrscr();
if(m>0||n>0||o>0||p>0||q>0||r>0||s>0||t>0||u>0||v>0)
{
cout<<"ntttItemsAvaliableinshop.nnn";
cout<<"=====================================================================
==========";
cout<<"nITEMS" <<setw(40)<<"QUANTITY";
cout<<"n===================================================================
============";
cout<<"nnnPENDRIVE" <<setw(37)<<abis;
cout<<"nnnSCANNER" <<setw(38)<<apep;
cout<<"nnnPRINTER" <<setw(38)<<aden;
cout<<"nnnWEBCAM" <<setw(39)<<amun;
cout<<"nnnGRAPHICCARD" <<setw(33)<<aperk;
cout<<"nnnRAM" <<setw(42)<<acoc;
cout<<"nnnHARDDISK" <<setw(35)<<atit;
cout<<"nnnWINDOWSORIGINALCD"<<setw(26)<<alux;
cout<<"nnnANTIVIRUS" <<setw(36)<<atid;
cout<<"nnnMOUSE" <<setw(40)<<aree;
cout<<"n*******************************************************************
************";
getch();
goto again;
}
else
{
{
cout<<"ntttItemsAvaliableinshop.nnn";
cout<<"=====================================================================
==========";
cout<<"nITEMS" <<setw(40)<<"QUANTITY";
cout<<"n===================================================================
============";
cout<<"nnnPENDRIVE" <<setw(37)<<1000;
cout<<"nnnSCANNER" <<setw(38)<<1000;
cout<<"nnnPRINTER" <<setw(37)<<110;
cout<<"nnnWEBCAM" <<setw(39)<<1000;
cout<<"nnnGRAPHICCARD" <<setw(32)<<500;
cout<<"nnnRAM" <<setw(41)<<400;
cout<<"nnnHARDDISK" <<setw(35)<<100;
cout<<"nnnWINDOWSORIGINALCD" <<setw(26)<<1000;
cout<<"nnnANTIVIRUS" <<setw(36)<<1000;
cout<<"nnnMOUSE" <<setw(39)<<300;
cout<<"nn*****************************************************************
**************";
getch();
goto again;
}
case 0:
//TO EXITFROM THE PROGRAM
clrscr();
cout<<"nnnttAREYOUSURE TO EXIT FROMTHE PROGRAMt";
cin>>et;
if(et=='y')
{
goto ex;
}
else
{
goto again;
}
ex:;
clrscr();
textcolor(RED);
sleep(1);
clrscr();
gotoxy(35,10);
cout<<" THANKS";
sleep(1);
clrscr();
gotoxy(35,20);
cout<<" THANKS";
sleep(1);
clrscr();
gotoxy(28,30);
cout<<" THANK YOU FOR USING THE PROJECTnnnn";
gotoxy(35,35);
textcolor(GREEN+BLINK);
gotoxy(35,25);
textcolor(RED+YELLOW);
delay(1000);
cputs("HAVEA NICEDAY");
gotoxy(45,45);
textcolor(YELLOW+BLINK);
cputs("PressENTERto EXIT.......");
getch();
exit(0);
default:
cout<<"OOPS!!!!!!!! Yourchoice isWRONG";
getch();
goto again;
}
}
}
//END OFVOIDMAIN
//END OFCOMPUTERS DIRECTORY
A computer shop management system
A computer shop management system
A computer shop management system

More Related Content

What's hot

STUDENT REPORT CARD GENERATE SYSTEM
STUDENT REPORT CARD GENERATE SYSTEMSTUDENT REPORT CARD GENERATE SYSTEM
STUDENT REPORT CARD GENERATE SYSTEMvikram mahendra
 
04.project billing system
04.project billing system04.project billing system
04.project billing systemgirivaishali
 
SUPER MARKET COMPUTER SYSTEM IN C++
SUPER MARKET COMPUTER SYSTEM IN C++SUPER MARKET COMPUTER SYSTEM IN C++
SUPER MARKET COMPUTER SYSTEM IN C++vikram mahendra
 
SRS FOR CHAT APPLICATION
SRS FOR CHAT APPLICATIONSRS FOR CHAT APPLICATION
SRS FOR CHAT APPLICATIONAtul Kushwaha
 
Quiz managment system
Quiz managment systemQuiz managment system
Quiz managment systemtamourk2
 
Report on car racing game for android
Report on car racing game for androidReport on car racing game for android
Report on car racing game for androidravijot singh
 
Report of Student management system
Report of Student management systemReport of Student management system
Report of Student management system1amitgupta
 
Project report-on-student-information-management-system-php-mysql
Project report-on-student-information-management-system-php-mysqlProject report-on-student-information-management-system-php-mysql
Project report-on-student-information-management-system-php-mysqlRaj Sharma
 
project on visual basic 6.0 ' Jewellery Shop Management'
project on visual basic 6.0 ' Jewellery Shop Management' project on visual basic 6.0 ' Jewellery Shop Management'
project on visual basic 6.0 ' Jewellery Shop Management' Anitha Krishnappa
 
Student management system
Student management systemStudent management system
Student management systemGaurav Subham
 
Hostel management system Software Engineering SRS
Hostel management system Software Engineering SRSHostel management system Software Engineering SRS
Hostel management system Software Engineering SRSFahad Chishti
 
Documentation of railway reservation system
Documentation of railway reservation systemDocumentation of railway reservation system
Documentation of railway reservation systemSandip Murari
 
Railway Ticket Issuing System (Online)
Railway Ticket Issuing System (Online)Railway Ticket Issuing System (Online)
Railway Ticket Issuing System (Online)Rashmika Nawaratne
 
Presentation on Railway Reservation System
Presentation on Railway Reservation SystemPresentation on Railway Reservation System
Presentation on Railway Reservation SystemPriyanka Sharma
 
online movie ticket booking system
online movie ticket booking systemonline movie ticket booking system
online movie ticket booking systemSikandar Pandit
 

What's hot (20)

STUDENT REPORT CARD GENERATE SYSTEM
STUDENT REPORT CARD GENERATE SYSTEMSTUDENT REPORT CARD GENERATE SYSTEM
STUDENT REPORT CARD GENERATE SYSTEM
 
04.project billing system
04.project billing system04.project billing system
04.project billing system
 
SUPER MARKET COMPUTER SYSTEM IN C++
SUPER MARKET COMPUTER SYSTEM IN C++SUPER MARKET COMPUTER SYSTEM IN C++
SUPER MARKET COMPUTER SYSTEM IN C++
 
SRS FOR CHAT APPLICATION
SRS FOR CHAT APPLICATIONSRS FOR CHAT APPLICATION
SRS FOR CHAT APPLICATION
 
Quiz managment system
Quiz managment systemQuiz managment system
Quiz managment system
 
Report on car racing game for android
Report on car racing game for androidReport on car racing game for android
Report on car racing game for android
 
Insurance management system report on visual basic
Insurance management system report on visual basicInsurance management system report on visual basic
Insurance management system report on visual basic
 
Report of Student management system
Report of Student management systemReport of Student management system
Report of Student management system
 
11.online library management system
11.online library management system11.online library management system
11.online library management system
 
Project report-on-student-information-management-system-php-mysql
Project report-on-student-information-management-system-php-mysqlProject report-on-student-information-management-system-php-mysql
Project report-on-student-information-management-system-php-mysql
 
project on visual basic 6.0 ' Jewellery Shop Management'
project on visual basic 6.0 ' Jewellery Shop Management' project on visual basic 6.0 ' Jewellery Shop Management'
project on visual basic 6.0 ' Jewellery Shop Management'
 
Students report card for C++ project..
Students report card for C++ project..Students report card for C++ project..
Students report card for C++ project..
 
Student management system
Student management systemStudent management system
Student management system
 
Hostel management system Software Engineering SRS
Hostel management system Software Engineering SRSHostel management system Software Engineering SRS
Hostel management system Software Engineering SRS
 
Documentation of railway reservation system
Documentation of railway reservation systemDocumentation of railway reservation system
Documentation of railway reservation system
 
Railway Ticket Issuing System (Online)
Railway Ticket Issuing System (Online)Railway Ticket Issuing System (Online)
Railway Ticket Issuing System (Online)
 
Software requirement specification(SRS)
Software requirement specification(SRS)Software requirement specification(SRS)
Software requirement specification(SRS)
 
Library management
Library managementLibrary management
Library management
 
Presentation on Railway Reservation System
Presentation on Railway Reservation SystemPresentation on Railway Reservation System
Presentation on Railway Reservation System
 
online movie ticket booking system
online movie ticket booking systemonline movie ticket booking system
online movie ticket booking system
 

Similar to A computer shop management system

c++ project
c++ projectc++ project
c++ projectTrish004
 
Computer science investigatory project- computer shop
Computer science investigatory project- computer shopComputer science investigatory project- computer shop
Computer science investigatory project- computer shopYash Panwar
 
cbse 12 computer science investigatory project
cbse 12 computer science investigatory project  cbse 12 computer science investigatory project
cbse 12 computer science investigatory project D. j Vicky
 
cbse 12 computer science investigatory project
cbse 12 computer science investigatory project  cbse 12 computer science investigatory project
cbse 12 computer science investigatory project D. j Vicky
 
cbse 12 computer science IP
cbse 12 computer science IPcbse 12 computer science IP
cbse 12 computer science IPD. j Vicky
 
Movie ticket booking
Movie ticket bookingMovie ticket booking
Movie ticket bookingRutul Dave
 
C program for hnb atm machine original - updated - [pys]
C program for hnb atm machine   original - updated - [pys]C program for hnb atm machine   original - updated - [pys]
C program for hnb atm machine original - updated - [pys]Pasan Suriyaarachchi
 
Project report on (atm MAnagment system)
Project report on (atm MAnagment system)Project report on (atm MAnagment system)
Project report on (atm MAnagment system)Muhammad Umer Lari
 
Bus transportation query report
Bus transportation query reportBus transportation query report
Bus transportation query reportSudhanshu Moolya
 
Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)Debashis Rath
 
Oh No They Didn't! 7 Web App Security Stories (v1.0)
Oh No They Didn't! 7 Web App Security Stories (v1.0)Oh No They Didn't! 7 Web App Security Stories (v1.0)
Oh No They Didn't! 7 Web App Security Stories (v1.0)Rafal Los
 
python pre-submission report.pdf
python pre-submission report.pdfpython pre-submission report.pdf
python pre-submission report.pdfSruthiMugle
 
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docx
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docxFinal ProjectLong Assignment Due by May 15th, 2020The goal of t.docx
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docxlmelaine
 
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docx
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docxFinal ProjectLong Assignment Due by May 15th, 2020The goal of t.docx
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docxtjane3
 
Fingerprint Authentication for ATM
Fingerprint Authentication for ATMFingerprint Authentication for ATM
Fingerprint Authentication for ATMParas Garg
 
ATM for visually challenged people
ATM for visually challenged peopleATM for visually challenged people
ATM for visually challenged peopleIRJET Journal
 
Cca venue worldintegrationmanual
Cca venue worldintegrationmanualCca venue worldintegrationmanual
Cca venue worldintegrationmanualRaghavendra chary
 
07 factors to consider while choosing an ecommerce payment gateway
07 factors to consider while choosing an ecommerce payment gateway07 factors to consider while choosing an ecommerce payment gateway
07 factors to consider while choosing an ecommerce payment gatewaySnehaDas60
 

Similar to A computer shop management system (20)

c++ project
c++ projectc++ project
c++ project
 
Computer science investigatory project- computer shop
Computer science investigatory project- computer shopComputer science investigatory project- computer shop
Computer science investigatory project- computer shop
 
cbse 12 computer science investigatory project
cbse 12 computer science investigatory project  cbse 12 computer science investigatory project
cbse 12 computer science investigatory project
 
cbse 12 computer science investigatory project
cbse 12 computer science investigatory project  cbse 12 computer science investigatory project
cbse 12 computer science investigatory project
 
cbse 12 computer science IP
cbse 12 computer science IPcbse 12 computer science IP
cbse 12 computer science IP
 
Movie ticket booking
Movie ticket bookingMovie ticket booking
Movie ticket booking
 
C program for hnb atm machine original - updated - [pys]
C program for hnb atm machine   original - updated - [pys]C program for hnb atm machine   original - updated - [pys]
C program for hnb atm machine original - updated - [pys]
 
Shopping mall management
Shopping mall managementShopping mall management
Shopping mall management
 
Project report on (atm MAnagment system)
Project report on (atm MAnagment system)Project report on (atm MAnagment system)
Project report on (atm MAnagment system)
 
Bus transportation query report
Bus transportation query reportBus transportation query report
Bus transportation query report
 
Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)
 
Oh No They Didn't! 7 Web App Security Stories (v1.0)
Oh No They Didn't! 7 Web App Security Stories (v1.0)Oh No They Didn't! 7 Web App Security Stories (v1.0)
Oh No They Didn't! 7 Web App Security Stories (v1.0)
 
python pre-submission report.pdf
python pre-submission report.pdfpython pre-submission report.pdf
python pre-submission report.pdf
 
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docx
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docxFinal ProjectLong Assignment Due by May 15th, 2020The goal of t.docx
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docx
 
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docx
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docxFinal ProjectLong Assignment Due by May 15th, 2020The goal of t.docx
Final ProjectLong Assignment Due by May 15th, 2020The goal of t.docx
 
Srs for banking system
Srs for banking systemSrs for banking system
Srs for banking system
 
Fingerprint Authentication for ATM
Fingerprint Authentication for ATMFingerprint Authentication for ATM
Fingerprint Authentication for ATM
 
ATM for visually challenged people
ATM for visually challenged peopleATM for visually challenged people
ATM for visually challenged people
 
Cca venue worldintegrationmanual
Cca venue worldintegrationmanualCca venue worldintegrationmanual
Cca venue worldintegrationmanual
 
07 factors to consider while choosing an ecommerce payment gateway
07 factors to consider while choosing an ecommerce payment gateway07 factors to consider while choosing an ecommerce payment gateway
07 factors to consider while choosing an ecommerce payment gateway
 

Recently uploaded

办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一F La
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)jennyeacort
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一F sss
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Jack DiGiovanna
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]📊 Markus Baersch
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort servicejennyeacort
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...limedy534
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Sapana Sha
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsappssapnasaifi408
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfSocial Samosa
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfgstagge
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfJohn Sterrett
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Callshivangimorya083
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPramod Kumar Srivastava
 
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改yuu sss
 
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degreeyuu sss
 

Recently uploaded (20)

办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdf
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdf
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
 
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
 
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
 

A computer shop management system