-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcanteen_management.cpp
393 lines (364 loc) · 11 KB
/
canteen_management.cpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
//**********************************************
// HEADER FILES
//**********************************************
#include<iostream.h>
#include<conio.h>
#include<string.h>
#include<stdio.h>
#include<process.h>
#include<iomanip.h>
#include<dos.h>
//**********************************************
// GLOBAL VARIABLES
//**********************************************
unsigned int sum,add,d,i,j,e,f,g,h,k,l,w,x,y,z;
unsigned int bir=10, per=36, der=110, mur=8, par=110 ,cor=90, twr=1199, lur=17,tir=107, rer=1499;
int qubis=1000, abis=0, qupep=1000, apep=0, quden=110, aden=0,qumun=1000,amun=0,quperk=500,aperk=0,qucoc=400,acoc=0,qutit=100,atit=0,qulux=1000,alux=0,qutid=1000,atid=0,quree=300,aree=0;
unsigned int m=0, n=0, o=0, p=0, q=0, r=0,s=0,t=0, u=0,v=0;
char name[50],rank[10],pu,c[20],a[15],b[15],ok;
//**********************************************
// FUNCTION PROTOTYPES
//**********************************************
void menu();
void detail();
void quant();
void eexit();
void main();
void imp();
//**********************************************
// FUNCTION DEFINITIONS
//**********************************************
// Introduction Function ***********************
void intro()
{
clrscr();
gotoxy(34,2);
cout<<" CANTEEN";
gotoxy(35,4);
cout<<"MANAGEMENT";
gotoxy(35,6);
cout<<" PROGRAM"<<endl<<endl<<endl<<endl<<endl;
cout<<"\n\nComputer Science Project ";
cout<<"\n\nMADE BY : T Sandeep ";
cout<<"\n\nCLASS : 12 - B ";
cout<<"\n\nSCHOOL : New Era Senior Seconday School "<<endl<<endl<<endl;
cout<<"PRESS ANY KEY TO CONTINUE..."<<endl;
getch();
}
// Choice Function ******************************
void again()
{
again:;
clrscr();
cout<<"\n\n\n\n1.MENU & PURCHASE";
cout<<"\n\n\n2.DETAILS";
cout<<"\n\n\n3.NEW CUSTOMER";
cout<<"\n\n\n4.QUANTITY AVAILABLE";
cout<<"\n\n\n5.EXIT";
cout<<"\n\n\nENTER YOUR CHOICE:";
cin>>d;
clrscr();
switch(d)
{
case 1: menu();
case 2: detail();
case 3: imp();
case 4: quant();
case 5: eexit();
default:
cout<<"Your choice is wrong";
getch();
goto again;
}
}
// Menu Function ******************************
void menu()
{
cout<<"\nITEMS\t\t\t\t\t\t\t RATE(RS)";
cout<<"\n\n\nCADBURY BISCUIT\t\t\t\t\t\t\t10 ";
cout<<"\n\nPEPSODENT TOOTHPASTE\t\t\t\t\t\t36";
cout<<"\n\nDENIM POWDER\t\t\t\t\t\t\t110 ";
cout<<"\n\nNESTLE MUNCH\t\t\t\t\t\t\t8 ";
cout<<"\n\nPARK AVENUE PERFUME\t\t\t\t\t\t110 ";
cout<<"\n\nCOCONUT HAIR OIL\t\t\t\t\t\t90 ";
cout<<"\n\nTITAN WATCH\t\t\t\t\t\t\t1199 ";
cout<<"\n\nLUX BATHING SOAP\t\t\t\t\t\t17 ";
cout<<"\n\nTIDE WASHING SOAP\t\t\t\t\t\t107 ";
cout<<"\n\nREEBOK SPORTS SHOES\t\t\t\t\t\t1499 ";
start:
cout<<"\n\n\nDO YOU WANT TO PURCHASE(Y/N):\n";
cin>>pu;
if(pu=='Y'||pu=='y')
{switch(pu)
case 1:
clrscr();
cout<<"\n\n\n\t\t\t\tPURCHASE LIST";
bis:;
cout<<"\nCADBURY BISCUIT(MAX 30): ";
cin>>m;
if(m>30)
{ cout<<"Enter Quantity Smaller than 30";
getch();
goto bis;
}
else abis=qubis-m;
pep:;
cout<<"\nPEPSODENT TOOTHPASTE(MAX 2): ";
cin>>n;
if(n>2)
{ cout<<"Enter Quantity Smaller than 2";
getch();
goto pep;
}
else apep=qupep-n;
den:;
cout<<"\nDENIM POWDER(MAX 2): ";
cin>>o;
if(o>2)
{ cout<<"Enter Quantity Smaller than 2";
getch();
goto den;
}
else aden=quden-o;
mun:;
cout<<"\nNESTLE MUNCH(MAX 50): ";
cin>>p;
if(p>50)
{ cout<<"Enter Quantity Smaller than 50";
getch();
goto mun;
}
else amun=qumun-p;
park:;
cout<<"\nPARK AVENUE PERFUME(MAX 2): ";
cin>>q;
if(q>2)
{ cout<<"Enter Quantity Smaller than 2";
getch();
goto park;
}
else aperk=quperk-q;
coco:;
cout<<"\nCOCONUT HAIR OIL(MAX 2): ";
cin>>r;
if(r>2)
{ cout<<"Enter Quantity Smaller than 2";
getch();
goto coco;
}
else acoc=qucoc-r;
titan:;
cout<<"\nTITAN WATCH(MAX 2): ";
cin>>s;
if(s>2)
{ cout<<"Enter Quantity Smaller than 2";
getch();
goto titan;
}
else atit=qutit-s;
lux:;
cout<<"\nLUX BATHING SOAP(MAX 10): ";
cin>>t;
if(t>10)
{ cout<<"Enter Quantity Smaller than 10";
getch();
goto lux;
}
else alux=qulux-t;
tid:;
cout<<"\nTIDE WASHING SOAP(MAX 2): ";
cin>>u;
if(u>2)
{ cout<<"Enter Quantity Smaller than 2";
getch();
goto tid;
}
else atid=qutid-u;
ree:;
cout<<"\nREEBOK SPORTS SHOES(MAX 4): ";
cin>>v;
if(v>4)
{ cout<<"Enter Quantity Smaller than 4";
getch();
goto ree;
}
else aree=quree-v;
cout<<"\n";
clrscr();
cout<<"\n\n\n\n\n\n\t\t\t\t ABC CANTEEN\n";
cout<<"\n\n\t\t\t\t CASH MEMO\n";
cout<<"\n\nBILL NO.:"<<i;
cout<<"\n\nNAME:";
cout<<name;
cout<<"\n\nRANK:"<<rank;
cout<<"\n\nSERVICE NO.:"<<a;
cout<<"\n\nSMART CARD NO.:"<<b;
cout<<"\n\nPHONE NO.:"<<c;
cout<<"\n\n\n\n\n";
cout<<"===============================================================================";
cout<<"\nITEMS" <<setw(40)<<"QUANTITY"<<setw(35)<<"PRICE(Rs.)";
cout<<"===============================================================================";
if(m>0)
cout<<"\n\nCADBURY BISCUIT" <<setw(30)<<m<<setw(28)<<"Rs."<<m*bir;
if(n>0)
cout<<"\n\nPEPSODENT TOOTHPASTE" <<setw(25)<<n<<setw(28)<<"Rs."<<n*per;
if(o>0)
cout<<"\n\nDENIM POWDER" <<setw(33)<<o<<setw(28)<<"Rs."<<o*der;
if(p>0)
cout<<"\n\nNESTLE MUNCH" <<setw(33)<<p<<setw(28)<<"Rs."<<p*mur;
if(q>0)
cout<<"\n\nPARK AVENUE PERFUME"<<setw(26)<<q<<setw(28)<<"Rs."<<q*par;
if(r>0)
cout<<"\n\nCOCONUT HAIR OIL" <<setw(29)<<r<<setw(28)<<"Rs."<<r*cor;
if(s>0)
cout<<"\n\nTITAN WATCH" <<setw(34)<<s<<setw(28)<<"Rs."<<s*twr;
if(t>0)
cout<<"\n\nLUX BATHING SOAP" <<setw(29)<<t<<setw(28)<<"Rs."<<t*lur;
if(u>0)
cout<<"\n\nTIDE" <<setw(41)<<u<<setw(28)<<"Rs."<<u*tir;
if(v>0)
cout<<"\n\nREEBOK SPORTS SHOES" <<setw(26)<<v<<setw(28)<<"Rs."<<v*rer;
e=m*bir;
f=n*per;
g=o*der;
h=p*mur;
k=q*par;
l=r*cor;
w=s*twr;
x=t*lur;
y=u*tir;
z=v*rer;
sum=e+f+g+h+k+l+w+x+y+z;
add=m+n+o+p+q+r+s+t+u+v;
cout<<"\n===============================================================================";
cout<<"\nTOTAL:"<<setw(39)<<add<<setw(28)<<"Rs."<<sum;
cout<<"\n\nTHANK YOU .\t\t\t PLEASE VISIT US AGAIN\n";
getch();
clrscr();
again();
}
else
{ again();
}
}
// Function to Display details of the Canteen *******
void detail()
{
cout<<"\n\n\n\n\n\t\t\t\tCANTEEN DETAILS";
cout<<"\n\n#TIMING:\n\n 11 AM TO 02 PM \n 03 PM TO 05 PM";
cout<<"\n\n\n#CANTEEN WILL REMAIN CLOSED ON TUESDAY";
cout<<"\n\n#GOODS ONCE SOLD WILL NOT BE EXCHANGED/REPLACED";
cout<<"\n\n#COLLECT YOUR SMART CARD & BILL AFTER PAYMENT";
getch();
clrscr();
again();
}
//Function to Accept Information from the Customer*
void imp()
{
{
cout<<"\n\n\n\t\t\t ABC CANTEEN ";
cout<<"\n\n\n\t\t\t CONSUMER INFORMATION";
cout<<"\n\n\n\n NAME:";
gets(name);
cout<<"\n RANK:";
gets(rank);
cout<<"\n SERVICE NO.:";
cin>>a;
cout<<"\n SMART CARD NO.:";
cin>>b;
cout<<"\n PHONE NO.:";
cin>>c;
cout<<"\n ENTER BILL NO.:";
cin>>i;
again();
}
}
//Function to Display Quantities of Available Items***
void quant()
{
if(m>0||n>0||o>0||p>0||q>0||r>0||s>0||t>0||u>0||v>0)
{
cout<<"\n\t\t\tItems Avaliable In Canteen:\n\n\n";
cout<<"===============================================================================";
cout<<"\nITEMS" <<setw(40)<<"QUANTITY";
cout<<"\n===============================================================================";
cout<<"\n\n\nCADBURY BISCUIT" <<setw(30)<<abis;
cout<<"\n\n\nPEPSODENT TOOTHPASTE" <<setw(25)<<apep;
cout<<"\n\n\nDENIM POWDER" <<setw(33)<<aden;
cout<<"\n\n\nNESTLE MUNCH" <<setw(33)<<amun;
cout<<"\n\n\nPARK AVENUE PERFUME"<<setw(26)<<aperk;
cout<<"\n\n\nCOCONUT HAIR OIL" <<setw(29)<<acoc;
cout<<"\n\n\nTITAN WATCH" <<setw(34)<<atit;
cout<<"\n\n\nLUX BATHING SOAP" <<setw(29)<<alux;
cout<<"\n\n\nTIDE WASHING SOAP" <<setw(28)<<atid;
cout<<"\n\n\nREEBOK SPORTS SHOES" <<setw(26)<<aree;
cout<<"\n*******************************************************************************";
getch();
again();
}
else
{
{cout<<"\n\t\t\tItems Available In Canteen:\n\n\n";
cout<<"===============================================================================";
cout<<"\nITEMS" <<setw(40)<<"QUANTITY";
cout<<"\n===============================================================================";
cout<<"\n\n\nCADBURY BISCUIT" <<setw(30)<<qubis;
cout<<"\n\n\nPEPSODENT TOOTHPASTE" <<setw(25)<<qupep;
cout<<"\n\n\nDENIM POWDER" <<setw(33)<<quden;
cout<<"\n\n\nNESTLE MUNCH" <<setw(33)<<qumun;
cout<<"\n\n\nPARK AVENUE PERFUME"<<setw(26)<<quperk;
cout<<"\n\n\nCOCONUT HAIR OIL" <<setw(29)<<qucoc;
cout<<"\n\n\nTITAN WATCH" <<setw(34)<<qutit;
cout<<"\n\n\nLUX BATHING SOAP" <<setw(29)<<qulux;
cout<<"\n\n\nTIDE WASHING SOAP" <<setw(28)<<qutid;
cout<<"\n\n\nREEBOK SPORTS SHOES" <<setw(26)<<quree;
cout<<"\n\n*******************************************************************************";
getch();
again();
}}
}
//Exit Function ********************************
void eexit()
{
cout<<"\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\t THANKS";
sleep(1);
clrscr();
cout<<"\n\n\n\n\n\n\n\n\n\n\n\tPress any key to Exit.......";
getch();
exit(0);
}
//************************************************
// THE MAIN FUNCTION OF PROGRAM
//************************************************
void main()
{
clrscr();
intro();
clrscr();
imp();
}
//***************************************************
// END OF SOURCE CODE
//***************************************************