-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFinalProject_ColbyCabrera.cpp
More file actions
294 lines (190 loc) · 5.54 KB
/
Copy pathFinalProject_ColbyCabrera.cpp
File metadata and controls
294 lines (190 loc) · 5.54 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
// Colby Cabrera
// FinalProject_ColbyCabrera.cpp
// A car rental system
// Visual Studio 2019
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
class Car {
public:
string type;
string name;
int price;
Car() {
type = "none set";
name = "none set";
price = 0;
}
Car(string t, string n, int p) {
type = t;
name = n;
price = p;
}
};
void menu(Car* array[5], int size[], int whichMenu, int& carType);
void rent(Car* array[5], int size[], int carType);
void buy(Car* array[5], int size[], int carType);
void carSelect(Car* array[5], int size[], int& carType, int& carChoice, bool isRental);
void fillArray(ifstream& input, Car* array[5], int size[]);
// Requires the CarList.txt file to be in the E:// drive
void fileOutput(string name, string carChoice, int days, bool isRental);
// Creates and appends rental and purchase data to the RentalAndPurchaseLog.txt file in the E:// drive
int main() {
int carType;
ifstream carListFile;
carListFile.open("E:\\CarList.txt");
typedef Car* CarPtr;
CarPtr cars[5];
int size[5] = { 6, 5, 3, 4, 2 };
cars[0] = new Car[6];
cars[1] = new Car[5];
cars[2] = new Car[3];
cars[3] = new Car[4];
cars[4] = new Car[2];
fillArray(carListFile, cars, size);
cout << "Welcome to Rent a Car Rentals!";
menu(cars, size, 0, carType);
return 0;
}
void menu(Car* array[5], int size[], int whichMenu, int& carType) {
int choice;
if (whichMenu == 0) {
cout << "\n\nMenu\n";
cout << "1: Rent\n";
cout << "2: Buy\n";
cout << "3: Exit\n";
cin >> choice;
while (choice > 3 || choice < 1) {
cout << "Number must be 1, 2, or 3, try again: ";
cin >> choice;
}
if (choice == 1) {
rent(array, size, carType);
}
else if (choice == 2) {
buy(array, size, carType);
}
else {
exit(0);
}
choice = 0;
}
else {
cout << "\nWe offer sedans, pickup trucks, minivans, SUVs, and sports cars!";
cout << "\nSelect a car type:\n";
cout << "1: Sedans\n";
cout << "2: Pickup Trucks\n";
cout << "3: Minivans\n";
cout << "4: SUVs\n";
cout << "5: Sports Cars\n";
cin >> carType;
while (carType > 5 || carType < 1) {
cout << "Number must be 1, 2, 3, or 5, try again: ";
cin >> carType;
}
carType--;
}
}
void rent(Car* array[5], int size[], int carType) {
int carChoice, days;
const double TAX = 0.06;
double cost, totalCost;
string name, lineEnd;
menu(array, size, 1, carType);
carSelect(array, size, carType, carChoice, true);
cout << "How many days are you renting the car? ";
cin >> days;
while (days < 1) {
cout << "You can only rent a car for one more more days, try again: ";
cin >> days;
}
cost = days * (array[carType][carChoice - 1].price / 1200.0);
totalCost = cost + (cost * TAX);
cout << "\nCost before 6% tax: $" << cost << endl;
cout << "Total cost: $" << totalCost << endl;
cout << "Enter a name for your rental: ";
getline(cin, lineEnd);
getline(cin, name);
cout << "Thank you for shopping at Rent a Car Rentals!";
fileOutput(name, array[carType][carChoice - 1].name, days, true);
menu(array, size, 0, carType);
}
void buy(Car* array[5], int size[], int carType) {
const double TAX = 0.06;
double cost, totalCost;
string name, lineEnd;
int carChoice;
menu(array, size, 1, carType);
carSelect(array, size, carType, carChoice, false);
cost = array[carType][carChoice - 1].price;
totalCost = cost + (cost * TAX);
cout << "\nCost before 6% tax: $" << cost << endl;
cout << "Total cost: $" << totalCost << endl;
cout << "Enter a name for your purchase: ";
getline(cin, lineEnd);
getline(cin, name);
cout << "Thank you for shopping at Rent a Car Rentals!";
fileOutput(name, array[carType][carChoice - 1].name, 0, false);
menu(array, size, 0, carType);
}
void fileOutput(string name, string carChoice , int days, bool isRental) {
ofstream log;
log.open("E:\\RentalAndPurchaseLog.txt", ios::app);
log << name << endl;
log << carChoice << endl;
if (isRental) {
log << "Rental" << endl;
log << days << " days" << endl;
}
else {
log << "Purchase" << endl;
}
log << endl;
log.close();
}
void fillArray(ifstream& input, Car* array[5], int size[]) {
string type, name, strPrice, space;
int price, k = 0;
for (int i = 0; i < 5; i++) {
for (int j = 0; j < size[k]; j++)
{
getline(input, type);
getline(input, name);
getline(input, strPrice);
getline(input, space);
price = stoi(strPrice);
array[i][j] = Car(type, name, price);
}
k++;
}
}
void carSelect(Car* array[5], int size[], int& carType, int& carChoice, bool isRental) {
cout.setf(ios::fixed);
cout.setf((ios::showpoint));
cout.precision(2);
cout << "\nSelect a car:\n";
if (isRental) {
for (int j = 0; j < size[carType]; j++) {
cout << j + 1 << ": " << array[carType][j].name;
cout << " $" << array[carType][j].price / 1200.0 << " per day.\n";
}
}
else {
for (int j = 0; j < size[carType]; j++) {
cout << j + 1 << ": " << array[carType][j].name;
cout << " $" << array[carType][j].price << endl;
}
}
cout << "0: Back to Menu.\n";
cin >> carChoice;
if (carChoice != 0) {
while (carChoice > size[carType] || carChoice < 1) {
cout << "Number must be a valid selection, try again: ";
cin >> carChoice;
}
}
else {
menu(array, size, 0, carType);
}
}