forked from tanus786/CP-Codes-HackOctober-Fest-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAirline Registration System.cpp
506 lines (401 loc) · 16.8 KB
/
Airline Registration System.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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
#include<iostream>
#include<fstream>
#include<iomanip>
using namespace std;
void main_menu();
class management{
public:
management(){
main_menu();
}
};
class details
{
public:
static string name, gender;
int phone_no;
int age;
string city; //address
static int cId; //customer id
char arr[100];
void information(){
cout<<"\nEnter the customer id : ";
cin>>cId;
cout<<"\nEnter the name : ";
cin>>name;
cout<<"\nEnter the age : ";
cin>>age;
cout<<"\nEnter city : ";
cin>>city;
cout<<"\nEnter gender : ";
cin>>gender;
cout<<"Your Details Are Saved With Us\n"<<endl;
}
};
int details::cId;
string details::name;
string details::gender;
class registration
{
public:
static int choice;
int choice1;
int back;
static float charges;
void flight(){
string flightN[] = {"Dubai", "Canada", "UK", "USA", "Australa", "Europe"};
for(int a=0;a<6;a++){
cout<<(a+1)<<".flight to "<<flightN[a]<<endl;
}
cout<<"\nWelcome to the airlines"<<endl;
cout<<"Press The Number Of The Country Of Which You Want To Book The Flight : ";
cin>>choice;
switch(choice)
{
case 1:
{
cout<<"_______________Welcome to Dubai Emirates___________________\n"<<endl;
cout<<"Your comfort is our proirity. Enjoy the journey"<<endl;
cout<<"Following are the flights \n"<<endl;
cout<<"1. DUB - 498"<<endl;
cout<<"\t09-10-2022 08:00 AM 11hrs Rs. 14000"<<endl;
cout<<"2. DUB - 672"<<endl;
cout<<"\t10-10-2022 04:00 AM 16hrs Rs. 12000"<<endl;
cout<<"3. DUB - 432"<<endl;
cout<<"\t09-10-2022 14:00 PM 22hrs Rs. 10000"<<endl;
cout<<"\nSelect the flight you want to book : ";
cin>>choice1;
if(choice1==1){
charges = 14000;
cout<<"\n You have successfully booked the flight DUB - 498"<<endl;
cout<<"You can go back to menu and take the ticket"<<endl;
}
else if(choice1==2){
charges = 12000;
cout<<"\n You have successfully booked the flight DUB - 672"<<endl;
cout<<"You can go back to menu and take the ticket"<<endl;
}
else if(choice1==3)
{
charges = 10000;
cout<<"\n You have successfully booked the flight DUB - 432"<<endl;
cout<<"You can go back to menu and take the ticket"<<endl;
}
else{
cout<<"Invalid input, shifting to the previous menu"<<endl;
flight();
}
cout<<"Press any key to go back to the main menu "<<endl;
cin>>back;
if(back==1){
main_menu();
}
else{
main_menu();
}
}
case 2:
{
cout<<"_______________Welcome to Canadian Airlines___________________\n"<<endl;
cout<<"Your comfort is our proirity. Enjoy the journey"<<endl;
cout<<"Following are the flights \n"<<endl;
cout<<"1. CA - 456"<<endl;
cout<<"\t10-10-2022 08:00 AM 15hrs Rs. 17000"<<endl;
cout<<"2. CA - 767"<<endl;
cout<<"\t11-10-2022 04:00 AM 13hrs Rs. 15000"<<endl;
cout<<"3. CA - 989"<<endl;
cout<<"\t12-10-2022 14:00 PM 19hrs Rs. 9000"<<endl;
cout<<"\nSelect the flight you want to book : ";
cin>>choice1;
if(choice1==1){
charges = 17000;
cout<<"\n You have successfully booked the flight CA - 456"<<endl;
cout<<"You can go back to menu and take the ticket"<<endl;
}
else if(choice1==2){
charges = 15000;
cout<<"\n You have successfully booked the flight CA - 767"<<endl;
cout<<"You can go back to menu and take the ticket"<<endl;
}
else if(choice1==3)
{
charges = 9000;
cout<<"\n You have successfully booked the flight CA - 989"<<endl;
cout<<"You can go back to menu and take the ticket"<<endl;
}
else{
cout<<"Invalid input, shifting to the previous menu"<<endl;
flight();
}
cout<<"Press any key to go back to the main menu "<<endl;
cin>>back;
if(back==1){
main_menu();
}
else{
main_menu();
}
}
case 3:
{
cout<<"_______________Welcome to UK Airways___________________\n"<<endl;
cout<<"Your comfort is our proirity. Enjoy the journey"<<endl;
cout<<"Following are the flights \n"<<endl;
cout<<"1. UK - 798"<<endl;
cout<<"\t10-10-2022 12:00 AM 8hrs Rs. 30000"<<endl;
cout<<"\nSelect the flight you want to book : ";
cin>>choice1;
if(choice1==1){
charges = 30000;
cout<<"\n You have successfully booked the flight UK - 798"<<endl;
cout<<"You can go back to menu and take the ticket"<<endl;
}
else{
cout<<"Invalid input, shifting to the previous menu"<<endl;
flight();
}
cout<<"Press any key to go back to the main menu "<<endl;
cin>>back;
if(back==1){
main_menu();
}
else{
main_menu();
}
}
case 4:
{
cout<<"_______________Welcome to US Airways___________________\n"<<endl;
cout<<"Your comfort is our proirity. Enjoy the journey"<<endl;
cout<<"Following are the flights \n"<<endl;
cout<<"1. US - 569"<<endl;
cout<<"\t14-10-2022 11:00 AM 10hrs Rs. 25000"<<endl;
cout<<"2. US - 324"<<endl;
cout<<"\t15-10-2022 02:00 AM 11hrs Rs. 20000"<<endl;
cout<<"\nSelect the flight you want to book : ";
cin>>choice1;
if(choice1==1){
charges = 25000;
cout<<"\n You have successfully booked the flight US - 569"<<endl;
cout<<"You can go back to menu and take the ticket"<<endl;
}
else if(choice1==2){
charges = 20000;
cout<<"\n You have successfully booked the flight US - 324"<<endl;
cout<<"You can go back to 5menu and take the ticket"<<endl;
}
else{
cout<<"Invalid input, shifting to the previous menu"<<endl;
flight();
}
cout<<"Press any key to go back to the main menu "<<endl;
cin>>back;
if(back==1){
main_menu();
}
else{
main_menu();
}
}
case 5:
{
cout<<"_______________Welcome to Australian Airways___________________\n"<<endl;
cout<<"Your comfort is our proirity. Enjoy the journey"<<endl;
cout<<"Following are the flights \n"<<endl;
cout<<"1. AU - 255"<<endl;
cout<<"\t11-10-2022 17:00 PM 14hrs Rs. 19000"<<endl;
cout<<"\nSelect the flight you want to book : ";
cin>>choice1;
if(choice1==1){
charges = 19000;
cout<<"\n You have successfully booked the flight AU - 255"<<endl;
cout<<"You can go back to menu and take the ticket"<<endl;
}
else{
cout<<"Invalid input, shifting to the previous menu"<<endl;
flight();
}
cout<<"Press any key to go back to the main menu "<<endl;
cin>>back;
if(back==1){
main_menu();
}
else{
main_menu();
}
}
case 6:
{
cout<<"_______________Welcome to Europe Airlines___________________\n"<<endl;
cout<<"Your comfort is our proirity. Enjoy the journey"<<endl;
cout<<"Following are the flights \n"<<endl;
cout<<"1. EU - 475"<<endl;
cout<<"\t13-10-2022 13:00 PM 15hrs Rs. 21000"<<endl;
cout<<"2. EU - 682"<<endl;
cout<<"\t14-10-2022 20:00 PM 16hrs Rs. 16000"<<endl;
cout<<"\nSelect the flight you want to book : ";
cin>>choice1;
if(choice1==1){
charges = 21000;
cout<<"\n You have successfully booked the flight EU - 475"<<endl;
cout<<"You can go back to menu and take the ticket"<<endl;
}
else if(choice1==2){
charges = 16000;
cout<<"\n You have successfully booked the flight EU - 682"<<endl;
cout<<"You can go back to menu and take the ticket"<<endl;
}
else{
cout<<"Invalid input, shifting to the previous menu"<<endl;
flight();
}
cout<<"Press any key to go back to the main menu "<<endl;
cin>>back;
if(back==1){
main_menu();
}
else{
main_menu();
}
}
default :
{
cout<<"Invalid input, shifting to main menu"<<endl;
main_menu();
break;
}
}
}
};
float registration::charges;
int registration::choice;
class ticket : public registration, details
{
public:
void bill(){
string destination="";
ofstream outf("records.txt");
{
outf<<"____________________onAIR AIRLINES________________________"<<endl;
outf<<"____________________Ticket________________________"<<endl;
outf<<"____________________________________________________"<<endl;
outf<<"Customer ID : "<<details::cId<<endl;
outf<<"Customer Name : "<<details::name<<endl;
outf<<"Customer Gender : "<<details::gender<<endl;
outf<<"\tDescription"<<endl<<endl;
if(registration::choice==1){
destination="Dubai";
}
else if(registration::choice==2){
destination="Canada";
}
else if(registration::choice==3){
destination="UK";
}
else if(registration::choice==4){
destination="USA";
}
else if(registration::choice==5){
destination="Australia";
}
else if(registration::choice==6){
destination="Europe";
}
outf<<"Destination : \t\t"<<destination<<endl;
outf<<"Flight cost : "<<registration::charges<<endl;
}
outf.close();
}
void dispbill(){
ifstream ifs("records.txt");
{
if(!ifs){
cout<<"File Error"<<endl;
}
while(!ifs.eof()){
ifs.getline(arr,100);
cout<<arr<<endl;
}
}
ifs.close();
}
};
void main_menu(){
int lchoice;
int schoice;
int back;
cout<<"\t onAIR AIRLINES \n"<<endl;
cout<<"\t_________________MAin Menu__________________"<<endl;
cout<<"\t____________________________________________"<<endl;
cout<<"\t\t\t\t\t\t\t\t"<<endl;
cout<<"\t|\t Press 1 to add the customer details \t|"<<endl;
cout<<"\t|\t Press 2 for flight registration \t|"<<endl;
cout<<"\t|\t Press 3 for tickets and charges \t|"<<endl;
cout<<"\t|\t Press 4 to exit \t|"<<endl;
cout<<"\t__________________________________________________"<<endl;
cout<<"\t\t\t\t\t\t\t\t"<<endl;
cout<<"Enter the choice : ";
cin>>lchoice;
details d;
registration r;
ticket t;
switch(lchoice){
case 1:
{
cout<<"___________________Customers_________________________\n"<<endl;
d.information();
cout<<"Press any key to go to main menu ";
cin>>back;
if(back==1){
main_menu();
}
else{
main_menu();
}
break;
}
case 2:
{
cout<<"________________Book a flight using this system__________________\n"<<endl;
r.flight();
break;
}
case 3:
{
cout<<"________________GET YOUR TICKET_______________\n"<<endl;
t.bill();
cout<<"Your ticket is printed , you can collect it \n"<<endl;
cout<<"Press 1 to display your ticket ";
cin>>back;
if(back==1){
t.dispbill();
cout<<"Press any key to go back to main menu ";
cin>>back;
if(back==1){
main_menu();
}
else{
main_menu();
}
}
else{
main_menu();
}
break;
}
case 4:
{
cout<<"\n\n\t______________THANK YOU________________"<<endl;
break;
}
default:
{
cout<<"Invalid input, pleasde try again\n"<<endl;
main_menu();
}
}
}
int main(){
management m1;
return 0;
}