-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal.cpp
More file actions
4151 lines (3806 loc) · 109 KB
/
Copy pathfinal.cpp
File metadata and controls
4151 lines (3806 loc) · 109 KB
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <bits/stdc++.h>
using namespace std;
#define MAX 20
int inputInt(string n) {
string n1=n;
n1:
cin.ignore(0,'\n');
getline(cin,n1);
int v = 0 , x=0 ,y=0;
for(char i : n1) {
if ((i >= '0' && i <= '9') || i=='.'){
v = 1;
} else {
cout<<"Invalid input"<<endl;
//v=0;
break;
}
}
while(v == 0) {
goto n1;
}
// int m = stoi(n);
int q = stoi(n1);
return q;
}
float inputFloat(string n) {
string n1=n;
n1:
cout<<"Enter : ";
cin.ignore(0,'\n');
getline(cin,n1);
int v = 0 ;
for(char i : n1) {
if ((i >= '0' && i <= '9') || i=='.'){
v = 1;
} else {
cout<<"Invalid input"<<endl;
//v=0;
break;
}
}
while(v == 0) {
goto n1;
}
// int m = stoi(n);
float q = stof(n1);
return q;
}
// Employee db
class Automobile {
protected:
string Vehicletype;
public:
Automobile(string type) : Vehicletype(type) {}
friend class Employee;
};
class Employee {
private:
string name;
int id, age;
int c, b, hv;
string username;
string password;
vector<Automobile> cars;
vector<Automobile> bikes;
vector<Automobile> heavyvehicles;
double salary; // Added member
public:
Employee(string empName, int empId, string uname, string pwd, int age) : name(empName), id(empId), username(uname), password(pwd), age(age), c(0), hv(0), b(0), salary(0) {} // Initialized salary
void addCar(Automobile car) {
cars.push_back(car);
c++;
updateSalary();
}
void addBike(Automobile bike) {
bikes.push_back(bike);
b++;
updateSalary();
}
void addHeavyVehicle(Automobile heavyVehicle) {
heavyvehicles.push_back(heavyVehicle);
hv++;
updateSalary();
}
void updateEmployeeDetails(Employee &emp);
void writeEmployeeDataToFile() {
ofstream file("employee_data.txt", ios::out);
if (!(age >= 65 || age <= 20)) {
file << "Name: " << name << endl;
file << "ID: " << id << endl;
file << "Age: " << age << endl;
file << "Salary: " << salary << endl; // Added salary to file output
file << "Automobiles:" << endl;
file << "Cars: " << c << endl;
file << "Bikes: " << b << endl;
file << "Heavy Vehicle: " << hv << endl;
file.close();
}
}
void displayInfo() {
cout << "Employee Name: " << name << endl;
cout << "Employee ID: " << id << endl;
cout << "Employee Age: " << age << endl;
cout << "Employee Salary: " << salary << endl; // Display salary
for (int i = 0; i < cars.size(); i++) {
cout << "Car " << i + 1 << " - Type: " << cars[i].Vehicletype << endl;
}
for (int j = 0; j < bikes.size(); j++) {
cout << "Bike " << j + 1 << " - Type: " << bikes[j].Vehicletype << endl;
}
for (int k = 0; k < heavyvehicles.size(); k++) {
cout << "Heavy Vehicle " << k + 1 << " - Type: " << heavyvehicles[k].Vehicletype << endl;
}
}
friend void handleEmployeeInteraction(Employee &emp);
friend bool login(Employee &emp, string pwd);
friend void changePassword(Employee &emp, string newPwd);
private:
void updateSalary() {
salary = c * 700 + b * 400 + hv * 600; // Calculate and update salary
}
};
void Employee::updateEmployeeDetails(Employee &emp) {
cout << "Do you want to update existing details? (Y/N): ";
string updateChoice;
cin >> updateChoice;
if (updateChoice == "Y" || updateChoice == "y") {
string updateField, empName, uname, pwd, existingPwd;
cout << "Enter the field you want to update (name/age/username/password): ";
cin >> updateField;
if (updateField == "name") {
cout << "Enter new Employee Name: ";
cin >> empName;
emp.name = empName;
} else if (updateField == "age") {
int empag;
cout << "Enter new Employee Age: ";
cin >> empag;
emp.age = empag;
} else if (updateField == "username") {
cout << "Enter new Username: ";
cin >> uname;
emp.username = uname;
} else if (updateField == "password") {
cout << "Enter old Password to confirm: ";
cin >> existingPwd;
if (emp.password == existingPwd) {
string newPwd;
cout << "Enter new Password: ";
cin >> newPwd;
emp.password = newPwd;
} else {
cout << "Incorrect existing password. Cannot update password." << endl;
}
}
}
}
bool login(Employee &emp, string pwd) {
if (emp.password == pwd) {
cout << "Login successful." << endl;
return true;
} else {
cout << "Login failed. Incorrect password." << endl;
return false;
}
}
void changePassword(Employee &emp, string newPwd) {
emp.password = newPwd;
cout << "Password changed successfully." << endl;
}
void handleEmployeeInteraction(Employee &emp) {
int choice = 0;
string newPwd;
string vehicleType;
cout << "Enter password: ";
string password;
cin >> password;
if (login(emp, password))
if(!(emp.age>=65 || emp.age<=20))
while (choice != 6) {
cout << "Menu Options:" << endl;
cout << "1. Add a new car" << endl;
cout << "2. Add a new bike" << endl;
cout << "3. Add a new heavy vehicle" << endl;
cout << "4. Update employee details" << endl;
cout << "5. Show data of employee" << endl;
cout<<"6. Exit"<<endl;
cout << "Enter your choice: ";
cin >> choice;
switch (choice) {
case 1:
cout << "Enter car type: ";
cin >> vehicleType;
emp.addCar(Automobile(vehicleType));
break;
case 2:
cout << "Enter bike type: ";
cin >> vehicleType;
emp.addBike(Automobile(vehicleType));
break;
case 3:
cout << "Enter heavy vehicle type: ";
cin >> vehicleType;
emp.addHeavyVehicle(Automobile(vehicleType));
break;
case 4:
emp.updateEmployeeDetails(emp);
break;
case 5:
emp.displayInfo();
break;
case 6:
cout<<"Exiting...\n";
break;
default:
cout << "Invalid choice. Please try again." << endl;
}
}
}
// employee main
int employeeMain(){
int numEmployees;
cout << "Enter the number of employees you want to store data for: ";
cin >> numEmployees;
vector<Employee> employees;
for (int i = 0; i < numEmployees; i++) {
string empName, uname, pwd;
int empId, emage;
cout << "Enter Employee Name for Employee " << i + 1 << ": ";
cin>>empName;
cout << "Enter Employee ID for Employee " << i + 1 << ": ";
string n1;
empId=inputInt(n1);
cout << "Enter Username for Employee " << i + 1 << ": ";
cin >> uname;
cout << "Enter age for Employee " << i + 1 << ": ";
string n;
emage=inputInt(n);
cout << "Enter Password for Employee " << i + 1 << ": ";
cin >> pwd;
Employee emp(empName, empId, uname, pwd,emage);
employees.push_back(emp);
cout << "Details of Employee " << i + 1 << ":" << endl;
employees[i].displayInfo();
handleEmployeeInteraction(employees[i]);
employees[i].writeEmployeeDataToFile();
}
return 0;
}
//////
class Finance {
public:
double calculateCost() ;
};
/// CAR DB
bool isFileEmpty(const string &filename) {
ifstream file(filename);
return file.peek() == ifstream::traits_type::eof();
}
void writeOutputToFile(string Car_type, string Model, float engine,float mileage,float power,int Seating,int Warranty,float fuel_tank,string Fuel_type,string Transmission) {
ofstream outputFile("car_database.txt", ios::app);
string filename = "car_database.txt";
if (outputFile.is_open() && isFileEmpty(filename)) {
cout<<"Car Inventory Details: "<<endl;
outputFile << "Car Type\tModel Name \tEngine Capacity\tMileage\tPower\tSeating Capacity\tWarranty\tFuel Tank\tFuel Type\tTransmission\n";
outputFile << Car_type << "\t\t\t\t\t\t\t" << Model << "\t\t\t\t\t" << engine<< "\t\t\t\t\t\t" << mileage << "\t\t\t\t\t\t"<<power<< "\t\t\t\t\t\t"<<Seating<< "\t\t\t\t\t\t"<<Warranty<< "\t\t\t\t\t\t"<<fuel_tank<< "\t\t\t\t\t\t"<<Fuel_type<<Transmission<< endl;
outputFile.close();
cout << "Servicing details written to Servicing_Details.txt" << endl;
}
else if (outputFile.is_open() && !isFileEmpty(filename)) {
outputFile << Car_type << "\t\t\t\t\t\t\t" << Model << "\t\t\t\t\t" << engine<< "\t\t\t\t\t\t" << mileage << "\t\t\t\t\t\t"<<power<< "\t\t\t\t\t\t"<<Seating<< "\t\t\t\t\t\t"<<Warranty<< "\t\t\t\t\t\t"<<fuel_tank<< "\t\t\t\t\t\t"<<Fuel_type<<Transmission<< endl;
outputFile.close();
}
else {
cout << "Unable to open file for writing."<<endl;
}
}
// float inputFloat(string n) {
// string n1 = n;
// n1:
// cin.ignore(0, '\n');
// getline(cin, n1);
// int v = 0; //x = 0, y = 0;
// for (char i : n1) {
// if ((i >= '0' && i <= '9') || i == '.') {
// v = 1;
// } else {
// cout << "Invalid input!!" << endl;
// // v=0;
// break;
// }
// }
// while (v == 0) {
// goto n1;
// }
// // int m = stoi(n);
// float q = stof(n1);
// return q;
// }
void inputStr(string &s) {
bool flag = false;
while (flag == false) {
cin.ignore(0, '\n');
getline(cin, s);
for (char c : s) {
if ((c >= 65 && c <= 90) || (c >= 97 && c <= 122) ||
(c >= 48 && c <= 57)) {
flag = true;
} else {
flag = false;
}
}
}
}
class Car {
protected:
string modelName;
float engine;
float engine_low;
float engine_high;
float mileage;
float mileage_high;
float mileage_low;
float power;
float power_high;
float power_low;
int seating_capacity;
int warranty;
int boot_space;
string fuel_type;
float fuel_tank;
string car_type;
static int count;
string transmission;
public:
friend void disp_count();
friend void writeOutputTofile(string car_type, string modelName, float engine, float mileage, float power, int seating_capacity, int warranty, float fuel_tank, string fuel_type, string transmission);
void input();
void display();
};
void Car::input() {
string n;
cout << "Enter Car Type: ";
inputStr(car_type);
cout << "Enter Model Name: ";
inputStr(modelName);
cout << "Enter Engine Capacity (in cc): ";
// Input Engine Capacity
engine = inputFloat(n);
// Input Milage
cout << "Enter Milage (in km/l): ";
mileage = inputFloat(n);
// Input Power
cout << "Enter Power (in bhp): ";
power = inputFloat(n);
cout << "Enter Seating Capacity: ";
seating_capacity = inputFloat(n);
cout << "Enter Warranty (in years): ";
warranty = inputFloat(n);
cout << "Enter Boot Space (in litres): ";
boot_space = inputFloat(n);
a:
cout << "Enter Fuel Type: ";
cout << "1. Petrol" << endl
<< "2. Diesel" << endl
<< "3. CNG" << endl
<< "4. EV" << endl;
int ch = inputFloat(n);
switch (ch) {
case 1:
fuel_type = "Petrol";
break;
case 2:
fuel_type = "Diesel";
break;
case 3:
fuel_type = "CNG";
break;
case 4:
fuel_type = "EV";
break;
default:
cout << "Invalid Input!!" << endl;
goto a;
}
cout << "Enter Fuel Tank Capacity (in litres): ";
fuel_tank = inputFloat(n);
b:
cout << "Enter Transmission (Manual/Automatic): \n"
<< "Enter '1' for Manual\nEnter '2' for Automatic\n";
int ch2 = inputFloat(n);
switch (ch2) {
case 1:
transmission = "Manual";
break;
case 2:
transmission = "Automatic";
break;
default:
cout << "Invalid choice entered!! Enter again...";
goto b;
}
writeOutputToFile(car_type,modelName,engine,mileage, power,seating_capacity, warranty,fuel_tank, fuel_type,transmission);
}
class Altroz : public Car {
static int count_Altroz;
public:
Altroz();
void input();
friend void disp_count();
friend void writeOutputTofile(string car_type, string modelName, float engine, float mileage, float power, int seating_capacity, int warranty, float fuel_tank, string fuel_type, string transmission);
};
Altroz::Altroz() {
modelName = "Rivian Altroz";
engine_low = 1199;
engine_high = 1497;
power_high = 108.48;
power_low = 72.41;
mileage_high = 19.60;
mileage_low = 18.05;
warranty = 3;
fuel_tank = 40;
boot_space = 350;
seating_capacity = 5;
car_type = "Hatchbacks";
count_Altroz++;
}
int Altroz::count_Altroz =0;
void Altroz::input() {
z:
string n;
cout << "Enter Engine Capacity(in cc): ";
engine = inputFloat(n);
if (engine < engine_low || engine > engine_high) {
cout << "\nInvalid Engine Capacity\nEngine Capacity of Altroz should be "
"between "
<< engine_low << " and " << engine_high << endl
<< "Enter again\n";
goto z;
}
y:
cout << "Enter Mileage(in kmpl): ";
mileage = inputFloat(n);
if (mileage < mileage_low || mileage > mileage_high) {
cout << "\nInvalid Mileage\nMileage of Altroz should be between "
<< mileage_low << " and " << mileage_high << endl
<< "Enter again\n";
goto y;
}
x:
cout << "Enter Power(in bHp): ";
power = inputFloat(n);
if (power < power_low || power > power_high) {
cout << "\nInvalid Power\nPower of Altroz should be between " << power_low
<< " and " << power_high << endl
<< "Enter again\n";
goto x;
}
a:
cout << "Enter Fuel Type (CNG/Petrol/EV): \n"
<< "Enter '1' for CNG\nEnter '2' for Petrol\nEnter '3' for EV\n";
int ch1 = inputFloat(n);
switch (ch1) {
case 1:
fuel_type = "CNG";
break;
case 2:
fuel_type = "Petrol";
break;
case 3:
fuel_type = "EV";
break;
default:
cout << "Invalid choice entered!! Enter again...";
goto a;
}
b:
cout << "Enter Transmission (Manual/Automatic): \n"
<< "Enter '1' for Manual\nEnter '2' for Automatic\n";
int ch2 = inputFloat(n);
switch (ch2) {
case 1:
transmission = "Manual";
break;
case 2:
transmission = "Automatic";
break;
default:
cout << "Invalid choice entered!! Enter again...";
goto b;
}
writeOutputToFile(car_type,modelName,engine,mileage, power,seating_capacity, warranty,fuel_tank, fuel_type,transmission);
}
class Ariel: public Car {
static int count_Ariel;
public:
friend void writeOutputTofile(string car_type, string modelName, float engine, float mileage, float power, int seating_capacity, int warranty, float fuel_tank, string fuel_type, string transmission);
Ariel() {
modelName = "Rivian Ariel";
engine_high = 1199;
engine_low = 1210;
warranty = 3;
fuel_tank = 34;
boot_space = 335;
mileage_low = 19.00;
mileage_high = 20.09;
seating_capacity = 5;
power_high = 84.48;
power_low = 72.41;
car_type = "Hatchbacks";
count_Ariel++;
}
void input();
friend void disp_count();
};
void Ariel::input() {
z:
string n;
cout << "\nEnter Engine Capacity: ";
engine = inputFloat(n);
if (engine < engine_low || engine > engine_high) {
cout << "\nInvalid Engine Capacity\nEngine Capacity of Ariel should be "
"between "
<< engine_low << " and " << engine_high << endl
<< "Enter again\n";
goto z;
}
// Input Engine Capacity
y:
cout << "Enter Mileage(in kmpl): ";
mileage = inputFloat(n);
if (mileage < mileage_low || mileage > mileage_high) {
cout << "\nInvalid Mileage\nMileage of Ariel should be between "
<< mileage_low << " and " << mileage_high << endl
<< "Enter again\n";
goto y;
}
// Input Mileage
x:
cout << "Enter Power(in bHp): ";
power = inputFloat(n);
if (power < power_low || power > power_high) {
cout << "\nInvalid Power\nPower of Ariel should be between " << power_low
<< " and " << power_high << endl
<< "Enter again\n";
goto x;
}
// Input Power
a:
cout << "Enter Fuel Type (CNG/Petrol/EV): \n"
<< "Enter '1' for CNG\nEnter '2' for Petrol\nEnter '3' for EV\n";
// Input Fuel Type
int ch = inputFloat(n);
switch (ch) {
case 1:
fuel_type = "CNG";
break;
case 2:
fuel_type = "Petrol";
break;
case 3:
fuel_type = "EV";
break;
default:
cout << "Invalid choice entered!! Enter again...";
goto a;
b:
cout << "Enter Transmission (Manual/Automatic): \n"
<< "Enter '1' for Manual\nEnter '2' for Automatic\n";
// Input Fuel Type
switch (ch) {
case 1:
transmission = "Manual";
break;
case 2:
transmission = "Automatic";
break;
default:
cout << "Invalid choice entered!! Enter again...";
goto b;
}
}
writeOutputToFile(car_type,modelName,engine,mileage, power,seating_capacity, warranty,fuel_tank, fuel_type,transmission);
}
int Ariel::count_Ariel = 0;
class Rivian_Haste : public Car {
static int count_Haste;
public:
Rivian_Haste();
void input();
friend void disp_count();
friend void writeOutputTofile(string car_type, string modelName, float engine, float mileage, float power, int seating_capacity, int warranty, float fuel_tank, string fuel_type, string transmission);
};
Rivian_Haste::Rivian_Haste() {
modelName = "Rivian Haste";
engine_low = 1199;
engine_high = 1210;
power_high = 84.48;
power_low = 72.41;
mileage_high = 19.60;
mileage_low = 19.28;
warranty = 3;
fuel_tank = 40;
boot_space = 350;
seating_capacity = 5;
car_type = "Hatchbacks";
count_Haste++;
}
void Rivian_Haste::input() {
string n;
z:
cout << "\nEnter Engine Capacity: ";
engine = inputFloat(n);
if (engine < engine_low || engine > engine_high) {
cout << "\nInvalid Engine Capacity\nEngine Capacity of haste should be "
"between "
<< engine_low << " and " << engine_high << endl
<< "Enter again\n";
goto z;
}
y:
// Input Engine Capacity
cout << "Enter Mileage(in kmpl): ";
mileage = inputFloat(n);
if (mileage < mileage_low || mileage > mileage_high) {
cout << "\nInvalid Mileage\nMileage of haste should be between "
<< mileage_low << " and " << mileage_high << endl
<< "Enter again\n";
goto y;
}
// Input Mileage
x:
cout << "Enter Power(in bHp): ";
power = inputFloat(n);
if (power < power_low || power > power_high) {
cout << "\nInvalid Power\nPower of haste should be between " << power_low
<< " and " << power_high << endl
<< "Enter again\n";
goto x;
}
// Input Power
a:
cout << "Enter Fuel Type (CNG/Petrol/EV): \n"
<< "Enter '1' for CNG\nEnter '2' for Petrol\nEnter '3' for EV\n";
// Input Fuel Type
int ch = inputFloat(n);
switch (ch) {
case 1:
fuel_type = "CNG";
break;
case 2:
fuel_type = "Petrol";
break;
case 3:
fuel_type = "EV";
break;
default:
cout << "Invalid choice entered!! Enter again...";
goto a;
b:
cout << "Enter Transmission (Manual/Automatic): \n"
<< "Enter '1' for Manual\nEnter '2' for Automatic\n";
// Input Fuel Type
switch (ch) {
case 1:
transmission = "Manual";
break;
case 2:
transmission = "Automatic";
break;
default:
cout << "Invalid choice entered!! Enter again...";
goto b;
}
}
writeOutputToFile(car_type,modelName,engine,mileage, power,seating_capacity, warranty,fuel_tank, fuel_type,transmission);
}
int Rivian_Haste::count_Haste = 0;
class Rivian_Allure : public Car {
static int count_Rivian_Allure;
public:
friend void writeOutputTofile(string car_type, string modelName, float engine, float mileage, float power, int seating_capacity, int warranty, float fuel_tank, string fuel_type, string transmission);
Rivian_Allure() {
modelName = "Rivian Allure";
engine_high = 1497;
engine_low = 1199;
warranty = 5;
fuel_tank = 35;
boot_space = 320;
seating_capacity = 5;
mileage_low = 17.01;
mileage_high = 24.08;
power_high = 113.31;
power_low = 118.27;
car_type = "SUV";
count_Rivian_Allure++;
}
void input();
friend void disp_count();
};
void Rivian_Allure::input() {
string n;
z:
cout << "\nEnter Engine Capacity: ";
engine = inputFloat(n);
if (engine < engine_low || engine > engine_high) {
cout << "\nInvalid Engine Capacity\nEngine Capacity of Allure should be "
"between "
<< engine_low << " and " << engine_high << endl
<< "Enter again\n";
goto z;
}
// Input Engine Capacity
y:
cout << "Enter Mileage(in kmpl): ";
mileage = inputFloat(n);
if (mileage < mileage_low || mileage > mileage_high) {
cout << "\nInvalid Mileage\nMileage of Allure should be between "
<< mileage_low << " and " << mileage_high << endl
<< "Enter again\n";
goto y;
}
// Input Mileage
x:
cout << "Enter Power(in bHp): ";
power = inputFloat(n);
if (power < power_low || power > power_high) {
cout << "\nInvalid Power\nPower of Allure should be between " << power_low
<< " and " << power_high << endl
<< "Enter again\n";
goto x;
}
// Input Power
a:
cout << "Enter Fuel Type (Diesel/Petrol/EV): \n"
<< "Enter '1' for Diesel\nEnter '2' for Petrol\nEnter '3' for EV\n";
// Input Fuel Type
int ch = inputFloat(n);
switch (ch) {
case 1:
fuel_type = "Diesel";
break;
case 2:
fuel_type = "Petrol";
break;
case 3:
fuel_type = "EV";
break;
default:
cout << "Invalid choice entered!! Enter again...";
goto a;
b:
cout << "Enter Transmission (Manual/Automatic): \n"
<< "Enter '1' for Manual\nEnter '2' for Automatic\n";
// Input Fuel Type
switch (ch) {
case 1:
transmission = "Manual";
break;
case 2:
transmission = "Automatic";
break;
default:
cout << "Invalid choice entered!! Enter again...";
goto b;
}
}
writeOutputToFile(car_type,modelName,engine,mileage, power,seating_capacity, warranty,fuel_tank, fuel_type,transmission);
}
int Rivian_Allure::count_Rivian_Allure = 0;
class Rivian_Harrier : public Car {
static int count_Rivian_Harrier;
public:
friend void writeOutputTofile(string car_type, string modelName, float engine, float mileage, float power, int seating_capacity, int warranty, float fuel_tank, string fuel_type, string transmission);
Rivian_Harrier() {
modelName = "Rivian Harrier";
engine_high = 1956;
engine_low = 1950;
warranty = 4;
fuel_tank = 45;
boot_space = 345;
seating_capacity = 5;
mileage_low = 16.80;
mileage_high = 17.01;
power_high = 167.62;
power_low = 165.08;
car_type = "SUV";
count_Rivian_Harrier++;
}
void input();
friend void disp_count();
};
void Rivian_Harrier::input() {
string n;
z:
cout << "\nEnter Engine Capacity: ";
engine = inputFloat(n);
if (engine < engine_low || engine > engine_high) {
cout << "\nInvalid Engine Capacity\nEngine Capacity of Harrier should be "
"between "
<< engine_low << " and " << engine_high << endl
<< "Enter again\n";
goto z;
}
// Input Engine Capacity
y:
cout << "Enter Mileage(in kmpl): ";
mileage = inputFloat(n);
if (mileage < mileage_low || mileage > mileage_high) {
cout << "\nInvalid Mileage\nMileage of Harrier should be between "
<< mileage_low << " and " << mileage_high << endl
<< "Enter again\n";
goto y;
}
// Input Mileage
x:
cout << "Enter Power(in bHp): ";
power = inputFloat(n);
if (power < power_low || power > power_high) {
cout << "\nInvalid Power\nPower of Harrier should be between " << power_low
<< " and " << power_high << endl
<< "Enter again\n";
goto x;
}
// Input Power
a:
cout << "Enter Fuel Type (Diesel/Petrol): \n"
<< "Enter '1' for Diesel\nEnter '2' for Petrol\n";
// Input Fuel Type
int ch = inputFloat(n);
switch (ch) {
case 1:
fuel_type = "Diesel";
break;
case 2:
fuel_type = "Petrol";
break;
default:
cout << "Invalid choice entered!! Enter again...";
goto a;
b:
cout << "Enter Transmission (Manual/Automatic): \n"
<< "Enter '1' for Manual\nEnter '2' for Automatic\n";
// Input Fuel Type
switch (ch) {
case 1:
transmission = "Manual";
break;
case 2:
transmission = "Automatic";
break;
default:
cout << "Invalid choice entered!! Enter again...";
goto b;
}
}
writeOutputToFile(car_type,modelName,engine,mileage, power,seating_capacity, warranty,fuel_tank, fuel_type,transmission);
}
int Rivian_Harrier::count_Rivian_Harrier =0;
class Rivian_Safari : public Car {
static int count_Rivian_Safari;
public:
friend void writeOutputTofile(string car_type, string modelName, float engine, float mileage, float power, int seating_capacity, int warranty, float fuel_tank, string fuel_type, string transmission);
Rivian_Safari() {
modelName = "Rivian Safari";
engine_high = 1960;
engine_low = 1956;
warranty = 5;
fuel_tank = 60;
boot_space = 400;
seating_capacity = 7;
mileage_low = 15.30;
mileage_high = 16.30;
power_high = 167.62;
power_low = 165.52;
car_type = "SUV";
count_Rivian_Safari++;
}
void input();
friend void disp_count();
};
void Rivian_Safari::input() {
string n;
z:
cout << "\nEnter Engine Capacity: ";
engine = inputFloat(n);
if (engine < engine_low || engine > engine_high) {
cout << "\nInvalid Engine Capacity\nEngine Capacity of Safari should be "
"between "
<< engine_low << " and " << engine_high << endl
<< "Enter again\n";
goto z;
}
// Input Engine Capacity
y:
cout << "Enter Mileage(in kmpl): ";
mileage = inputFloat(n);
if (mileage < mileage_low || mileage > mileage_high) {
cout << "\nInvalid Mileage\nMileage of Safari should be between "
<< mileage_low << " and " << mileage_high << endl