-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBank.cpp
More file actions
369 lines (356 loc) · 7.93 KB
/
Bank.cpp
File metadata and controls
369 lines (356 loc) · 7.93 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
#include "Bank.h"
#include <iostream>
#include <fstream>
#include <conio.h>
#include <limits>
using namespace std;
template <typename T>
void p(T content){ //create general template
cout<<"\t\t\t\t\t"<<content<<endl;
}
string acc;
const string admin = "1234";
inline int validate(){
int var;
cin>>var;
while(!cin){
cout<<"\n\t\t\t\t\tError: Invalid Input!\n\t\t\t\t\t=>";
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(),'\n');
cin>>var;
}
return var;
}
void Bank::OpenAccount(){
ofstream File;
File.open("account.txt", ios::app); // file is append
p("\t\t\t\t\tEnter Account Number: ");
cout<<"\t\t\t\t\t=>";
Number = validate();
while(Number<0){
p("\t\t\t\t\tError! Enter a valid number.");
p("\t\t\t\t\tEnter Account Number: ");
cout<<"\t\t\t\t\t=>";
cin>>Number;
}
p("\t\t\t\t\tEnter Account Name: ");
cout<<"\t\t\t\t\t=>";
cin.ignore();
getline(cin, Name);
p("\t\t\t\t\tEnter Account Balance: ");
cout<<"\t\t\t\t\t=>";
Balance = validate();
while(Balance<=0){
p("\t\t\t\t\tError! Enter a valid amount");
p("\t\t\t\t\tEnter Account Balance: ");
cout<<"\t\t\t\t\t=>";
cin>>Balance;
}
File<<Number<<", "<<Name<<", "<<Balance<<endl;
File.close();
p("\t\t\t\t\tAccount has been created successfully!");
}
void Bank::ShowAccount(){
ifstream File;
File.open("account.txt");
string account;
cout<<"\n\t\t\t\t\t=======================\n";
cout<<"\t\t\t\t\tNumber\tName\tBalance\n";
cout<<"\t\t\t\t\t=======================\n";
while(getline(File, account)){
cout<<"\t\t\t\t\t";
cout<<" ";
for (int i = 0 ; i < account.length() ; i++){
if (account[i]==','){
cout<<" | ";
}
else{
cout<<account[i];
}
}
cout<<endl;
account.clear();
}
File.close();
}
int Bank::Deposit(){
int amount;
acc = "no";
Search();
if (acc=="no"){
p("\t\t\t\t\tNo such account exists...");
return 0;
}
string str_balance;
str_balance.clear();
for (int i = 0 ; i < acc.length(); i++){
if (acc[i] == ',')
str_balance.clear();
else
str_balance += acc[i];
}
cout<<"\t\t\t\t\tBalance: "<<str_balance<<endl;
Balance = stoi(str_balance);
p("\t\t\t\t\tEnter Ammount: ");
cout<<"\t\t\t\t\t=>";
amount = validate();
while (amount < 1){
p("\t\t\t\t\tError! Please enter positive amount.");
p("\t\t\t\t\tEnter Ammount: ");
cout<<"\t\t\t\t\t=>";
amount = validate();
}
Balance += amount;
cout<<"\t\t\t\t\tNew Balance: "<<Balance<<endl;
p("\n\t\t\t\t\tAmount Deposited Successfully!");
fstream File("account.txt");
fstream Temp;
Temp.open("temp.txt", ios::app);
string new_acc;
new_acc.clear();
string temp_account;
while(!File.eof()){
getline(File, temp_account);
if (temp_account == acc){
int count = 0;
for (int i = 0; (i < acc.length() && count < 2) ; i++ ){
new_acc += acc[i];
if (acc[i]==','){
count++;
}
}
new_acc += to_string(Balance);
Temp<<new_acc<<endl;
}
else{
Temp<<temp_account<<endl;
}
}
File.close();
Temp.close();
remove("account.txt");
rename("temp.txt","account.txt");
}
int Bank::Withdrawal(){
int amount;
acc = "no";
Search();
if (acc=="no"){
p("\t\t\t\t\tNo such account exists...");
return 0;
}
string str_balance;
str_balance.clear();
for (int i = 0 ; i < acc.length(); i++){
if (acc[i] == ',')
str_balance.clear();
else
str_balance += acc[i];
}
cout<<"\t\t\t\t\tBalance: "<<str_balance<<endl;
Balance = stoi(str_balance);
p("\t\t\t\t\tEnter Amount: ");
cout<<"\t\t\t\t\t=>";
amount = validate();
while(amount<=0){
p("\t\t\t\t\tError: Incorrect Value");
p("\t\t\t\t\tEnter Amount: ");
cout<<"\t\t\t\t\t=>";
amount= validate();
}
if (amount <= Balance){
Balance -= amount;
cout<<"\t\t\t\t\tNew Balance: "<<Balance<<endl;
p("\n\t\t\t\t\tAmount Withdrawn Successfully.");
}
else{
p("\n\t\t\t\t\tNo Enough Balance in the Account");
Withdrawal();
}
fstream File("account.txt");
fstream Temp;
Temp.open("temp.txt", ios::app);
string new_acc;
new_acc.clear();
string temp_account;
while(!File.eof()){
getline(File, temp_account);
if (temp_account == acc){
int count = 0;
for (int i = 0; (i < acc.length() && count < 2) ; i++ ){
new_acc += acc[i];
if (acc[i]==','){
count++;
}
}
new_acc += to_string(Balance);
Temp<<new_acc<<endl;
}
else{
Temp<<temp_account<<endl;
}
}
File.close();
Temp.close();
remove("account.txt");
rename("temp.txt","account.txt");
}
void Bank::Search(){
int acc_num;
acc = "no";
p("\n\t\t\t\t\tEnter Account Number: ");
cout<<"\t\t\t\t\t=>";
acc_num = validate();
while(acc_num < 1){
cout<<"\t\t\t\t\tError: Only Enter Positive Numbers\n";
p("\n\t\t\t\t\tEnter Account Number: ");
cout<<"\t\t\t\t\t=>";
acc_num = validate();
}
ifstream File;
File.open("account.txt");
string account;
string GetAccNum;
while(getline(File, account)){
GetAccNum.clear();
for (int i = 0 ; i < account.length(); i++){
if (account[i] != ','){
GetAccNum += account[i];
}
else{
break;
}
}
if (to_string(acc_num)== GetAccNum){
acc = account;
break;
}
}
p("\t\t\t\t\t=======================");
p("\t\t\t\t\tNumber\tName\tBalance");
p("\t\t\t\t\t=======================");
cout<<"\t\t\t\t\t";
for (int i = 0 ; i < account.length() ; i++){
if (account[i]==','){
cout<<" | ";
}
else{
cout<<account[i];
}
}
cout<<endl;
}
inline void Menu(){
printAscii();
cout<<"\t\t\t\t\t1) Open Account"<<endl
<<"\t\t\t\t\t2) Show Account"<<endl
<<"\t\t\t\t\t3) Deposit Amount"<<endl
<<"\t\t\t\t\t4) Withdraw Amount"<<endl
<<"\t\t\t\t\t5) Search Account"<<endl
<<"\t\t\t\t\t0) Exit"<<endl
<<"\t\t\t\t\t=>";
}
int bank(){
int what;
Bank account;
Menu();
what = validate();
while(what<0 || what>5){
system("CLS");
p("\n\n\n\n\t\t\t\t\tError! invalid option selected.");
Menu();
cin>>what;
}
system("CLS");
switch(what){
case 1:
p("\n\n\t\t\t\t\t OPEN ACCOUNT");
account.OpenAccount();
break;
case 2:
p("\n\n\t\t\t\t\t ALL BANK ACCOUNT");
account.ShowAccount();
break;
case 3:
p("\n\n\t\t\t\t\t DEPOSIT AMOUNT");
account.Deposit();
break;
case 4:
p("\n\n\t\t\t\t\t WITHDRAW AMOUNT");
account.Withdrawal();
break;
case 5:
p("\n\n\t\t\t\t\t SEARCH AMOUNT");
account.Search();
break;
case 0:
p("\n\n\t\t\t\t\tLogging Out.... Thanks for using Bank :)");
return 0;
default:
p("\n\n\t\t\t\t\t Something went wrong!");
}
bank();
}
string getbpass(){
string password = "";
char pass;
while(pass != 13 )
{
pass = getch();
if (pass == 8){
continue;
}
else if (pass != 13){
cout<<"*";
password.push_back(pass);
}
}
return password;
}
void printAscii(){
string line="";
ifstream inFile;
inFile.open("smartbankart.txt");
if (inFile.is_open())
{
while (getline(inFile,line))
{
cout<<line<<endl;
}
}
else
{
cout<<"\n\n\n\n\n\t\t\t\t\t-------------------------\n";
cout<<"\t\t\t\t\tWelcome to Smart Bank\n";
cout<<"\t\t\t\t\t-------------------------\n";
}
inFile.close();
}
int mainBank(){
system("color 0C");
Bank acc;
string get_pass;
system("CLS");
usebank:
p("\n\n\n\n\t\t\t\t\tLOGIN IN");
p("\n\n\t\t\t\t\tEnter Admin Password (0 to Exit): ");
cout<<"\t\t\t\t\t=>";
get_pass = getbpass();
if (get_pass == admin){
system("CLS");
p("\n\t\t\t\t\tYou are Logged in!!!");
bank();
return 0;
}
else if (get_pass == "0"){
p("\n\t\t\t\tExiting....");
return 0;
}
else{
system("CLS");
p("\n\n\n\n\n\t\t\t\t\tThe Password is incorrect");
goto usebank;
}
mainBank();
return 0;
}