-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
345 lines (283 loc) · 8.78 KB
/
main.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
#include <iostream>
#include <string>
#include "Account.h"
#include "Checkings.h"
#include "Savings.h"
using namespace std;
void Account::setAccountName(string firstname, string lastname)
{
firstName = firstname;
lastName = lastname;
}
string Account::getAccountName()
{
accountName = firstName + " " + lastName;
return(accountName);
}
void Account::setAccountNumber(int accno)
{
accNumber = accno;
}
bool Account::login() //loging verification with predefined credentials
{
int givenAccountNumber = -1;
int givenPinNumber = -1;
bool isAccountInvalid = true;
bool isPinInvalid = true;
cout << "-----------------------------" << endl;
cout << "| Welcome! |" << endl;
cout << "-----------------------------" << endl;
while (isAccountInvalid) {
cout << "Please enter your account number: ";
cin >> givenAccountNumber;
if (givenAccountNumber == accountNumber) {
isAccountInvalid = false;
}
else {
cout << "Invalid account number! Try again." << endl;
}
}
while (isPinInvalid) {
cout << "\nEnter your PIN: ";
cin >> givenPinNumber;
if (givenPinNumber == pinNumber) {
isPinInvalid = false;
}
else {
cout << "Invalid PIN number! Try again." << endl;
}
}
return true;
}
void Checkings::setBalance(double deposit)
{
c_balance = c_balance + deposit;
}
double Checkings::getBalance() const
{
return c_balance;
}
void Checkings::setWithdraw()
{
double wdraw = 0;
cout << "Enter withdrawal amount: Rs.";
cin >> wdraw;
if (c_balance >= wdraw) {
c_balance = c_balance - wdraw;
cout << "Your updated Checkings balance is: Rs." << c_balance << endl;
}
else {
cout << "Not able to withdraw Rs." << wdraw << " from account.";
cout << "Not enough funds..." << endl;
}
}
void Checkings::setDeposit()
{
double dep = 0;
cout << "Enter deposit amount: Rs.";
cin >> dep;
c_balance = c_balance + dep;
cout << "Your updated Checkings balance is: Rs." << c_balance << endl;
}
double Checkings::getTransfer() //returns transfer ammount
{
double wdraw = 0;
cout << "Enter transfer amount: Rs.";
cin >> wdraw;
if (c_balance >= wdraw) {
c_balance = c_balance - wdraw;
cout << "Your updated Checkings balance is: Rs." << c_balance << endl;
return wdraw;
}
else {
cout << "Not able to withdraw Rs." << wdraw << " from account.";
cout << "Not enough funds..." << endl;
return 0.0;
}
}
void Savings::setSavingsBalance(double deposit)
{
s_balance = s_balance + deposit;
}
double Savings::getSavingsBalance() const
{
return s_balance;
}
void Savings::setWithdraw()
{
double wdraw = 0;
cout << "Enter withdrawal amount: Rs.";
cin >> wdraw;
if (s_balance >= wdraw) {
s_balance = s_balance - wdraw;
cout << "Your updated Checkings balance is: Rs." << s_balance << endl;
}
else {
cout << "Not able to withdraw Rs." << wdraw << " from account." << endl;
cout << "Not enough funds..." << endl;
}
}
void Savings::setDeposit()
{
double dep = 0;
cout << "Enter deposit amount: Rs.";
cin >> dep;
s_balance = s_balance + dep;
cout << "Your updated Savings balance is: Rs." << getSavingsBalance() << endl;
}
double Savings::getTransfer() // returns transfer ammount
{
double wdraw = 0;
cout << "Enter transfer amount: Rs.";
cin >> wdraw;
if (s_balance >= wdraw) {
s_balance = s_balance - wdraw;
cout << "Your updated Savings balance is: Rs." << s_balance << endl;
return wdraw;
}
else {
cout << "Not able to withdraw Rs." << wdraw << " from account.";
cout << "Not enough funds..." << endl;
return 0.0;
}
}
int mainMenu() { //function for main menu interface
int choice = 0;
cout << "\n-----------------------------" << endl;
cout << "|What would you like to do? |" << endl;
cout << "-----------------------------" << endl;
cout << "| 1. Deposit |" << endl;
cout << "| 2. Withdraw |" << endl;
cout << "| 3. Check Balance |" << endl;
cout << "| 4. Transfer Money |" << endl;
cout << "| 5. [Exit] |" << endl;
cout << "-----------------------------" << endl;
cin >> choice;
return choice;
}
int main()
{
//class-objects instantiation
Account accObj;
Checkings checkObj;
Savings savObj;
//accObj.login(); //call for login page
accObj.login();
accObj.setAccountName("Shashank", "Kumar"); // Or whatever predefined name
string fullName = accObj.getAccountName();
cout << "-----------------------------" << endl;
cout << "| Welcome, " << fullName << " |" << endl;
cout << "-----------------------------" << endl;
// if going to create x>1 number of bank accounts,
// implement using an array of objects
bool isNotFinished = true; //used to break do-while loop
int accountChoice = -1;
//loop through menu until user hits exit
do {
switch (mainMenu())
{
// call deposit function
case 1:
cout << "-------------------------------------------------" << endl;
cout << "| Which account would you like to deposit into? |" << endl;
cout << "-------------------------------------------------" << endl;
cout << "| 1. Checking |" << endl;
cout << "| 2. Savings |" << endl;
cout << "-------------------------------------------------" << endl;
cin >> accountChoice;
switch (accountChoice) { //nested switch case to chose account type
case 1:
checkObj.setDeposit();
break;
case 2:
savObj.setDeposit();
break;
default:
cout << "Invalid choice! Please select again." << endl;
break;
}
break;
// call widthdraw
case 2:
cout << "-------------------------------------------------" << endl;
cout << "| Which account to widthdrwaw from? |" << endl;
cout << "-------------------------------------------------" << endl;
cout << "| 1. Checking |" << endl;
cout << "| 2. Savings |" << endl;
cout << "-------------------------------------------------" << endl;
cin >> accountChoice;
switch (accountChoice) { //nested switch case to chose account type
case 1:
checkObj.setWithdraw();
break;
case 2:
savObj.setWithdraw();
break;
default:
cout << "Invalid choice! Please select again." << endl;
break;
}
break;
case 3:
// call to check balance
cout << "-------------------------------------------------" << endl;
cout << "| Check Account Balance for? |" << endl;
cout << "-------------------------------------------------" << endl;
cout << "| 1. Checking |" << endl;
cout << "| 2. Savings |" << endl;
//cout << "| 3. Checking & Savings |" << endl; Modular case (Not needed here)
cout << "-------------------------------------------------" << endl;
cin >> accountChoice;
switch (accountChoice)
{
case 1:
cout << "Your current Checking balance is Rs." << checkObj.getBalance(); // gets balance for checkings account
break;
case 2:
cout << "Your current Savings balance is Rs." << savObj.getSavingsBalance(); // gets balance for savings account
break;
default:
cout << "Invalid choice! Please select again." << endl;
break;
}
break;
// call for transfer
case 4:
cout << "-------------------------------------------------" << endl;
cout << "| Select account you wish to transer from. |" << endl;
cout << "-------------------------------------------------" << endl;
cout << "| 1. Checkings to Savings |" << endl;
cout << "| 2. Savings to Checkings |" << endl;
cout << "-------------------------------------------------" << endl << endl;
cin >> accountChoice;
switch (accountChoice)
{
case 1:
{
double depositTOsav = checkObj.getTransfer(); // Withdraw ammount from Checking
savObj.setSavingsBalance(depositTOsav); // Deposit ammount to Savings
break;
}
case 2:
{
double depositTOcheck = savObj.getTransfer(); // Withdraw ammount from Savings
checkObj.setBalance(depositTOcheck); // Deposit ammount to Checkings
break;
}
default:
cout << " Invalid choice! Please select again." << endl;
}
break;
// Call for EXIT on menu.
case 5:
cout << "Thank you for Choosing Chase Fargo of America." << endl;
isNotFinished = false;
break;
default:
cout << "Invalid choice! Please select again." << endl;
break;
}
} while (isNotFinished);
system("pause");
return 0;
}