generated from deepadhia/c-programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
banking.cpp
470 lines (439 loc) · 13 KB
/
banking.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
#include<iostream>
#include<conio.h>
#include<string.h>
#include<fstream>
using namespace std;
class banking{
char name[20];
long accountno;
char phoneno[20];
char pin[10];
int balance,initialbal=0;
char accounttype[20];
public:
banking(){
accountno=1001054355;
}
void getdata();
void getmdata();
void showall();
void showdata();
void check_balance();
void modify();
void assignaccountno();
int adddeposit(int);
int withdraw(int);
char *getname(){return name;}
char *getpin(){return pin;}
};
void banking::getdata()
{
cout<<"Enter name of the Account holder : ";
cin>>name;cout<<endl;
cout<<"Enter contact no. of the Account holder : ";
cin>>phoneno;
int x=strlen(phoneno);
while (x!=10)
{ cout<<endl;
cout<<"Enter Valid Phone no : ";
cin>>phoneno;
x=strlen(phoneno);
}cout<<endl;
cout<<"Enter Pin of 4 digits for your Account you want to Set : ";
cin>>pin;
int y=strlen(pin);
while (y!=4)
{ cout<<endl;
cout<<"Enter Valid Pin : ";
cin>>pin;
y=strlen(pin);
}cout<<endl;
cout<<"Select the Type of Account You want to open (Current/Savings)"<<endl;
cout<<"\t \t \t \t \t \t 1.Current"<<endl;
cout<<"\t \t \t \t \t \t 2.Savings"<<endl;
int a;
cin>>a;
if(a==1)
strcpy(accounttype,"Current");
else if(a==2)
strcpy(accounttype,"Savings");
else
cout<<"Enter valid Choice";
cout<<"Enter the initial deposit amount you want to give (min rs500)";
cin>>initialbal;
if(initialbal<500)
{ cout<<"Enter amount greater Than minimum limit";
cin>>initialbal;
}
balance=initialbal;
cout<<endl;
cout<<endl;
cout<<"\t \t \t \t \t Congratulations your account has been Created";
}
void banking::getmdata()
{ char ch;
do{
system("cls");
cout<<endl<<endl;
cout<<"\t \t \t \t \t Select the option you want to Change "<<endl;
cout<<"\t \t \t \t 1.Change Name";
cout<<endl<<endl;
cout<<"\t \t \t \t 2.Change Phoneno";
cout<<endl<<endl;
cout<<"\t \t \t \t 3.Change Pin";
cout<<endl<<endl;
cout<<"\t \t \t \t 4.Change Account Type";
cout<<endl<<endl;
cout<<"\t \t \t \t 5.Exit to main menu";
cout<<endl<<endl;
cout<<"\t \t \t \t Enter your choice(1-4) : ";
ch=getch();
switch(ch)
{
case '1': system("cls");
cout<<"Enter new name of the Account holder : ";
cin>>name;
cout<<endl;
getch();
break;
case '2': {
system("cls");
cout<<"Enter new contact no. of the Account holder : ";
cin>>phoneno;
int x=strlen(phoneno);
while (x!=10)
{ cout<<endl;
cout<<"Enter Valid Phone no : ";
cin>>phoneno;
x=strlen(phoneno);
}
cout<<endl;
}getch();
break;
case '3': {
system("cls");
cout<<"Enter New Pin of 4 digits for your Account you want to Set : ";
cin>>pin;
int y=strlen(pin);
while (y!=4)
{
cout<<endl;
cout<<"Enter Valid Pin : ";
cin>>pin;
y=strlen(pin);
}
cout<<endl;
}getch();
break;
case '4': {
system("cls");
cout<<"Change the Type of Your Account(Current/Savings)"<<endl;
cout<<"\t \t \t \t \t \t 1.Current"<<endl;
cout<<"\t \t \t \t \t \t 2.Savings"<<endl;
int a;
cin>>a;
if(a==1)
strcpy(accounttype,"Current");
else if(a==2)
strcpy(accounttype,"Savings");
else
cout<<"Enter valid Choice";
cout<<endl;
}
getch();
break;
case '5' : break;
default : cout<<"Enter Valid Choice";
break;
}
if(ch!='5')
cout<<"\t \t \t \t \t Congratulations your account details have been Updated";
}while(ch=='4');
}
void banking::check_balance()
{
cout<<balance;
}
void banking::showall()
{
cout<<"\n" ;
cout<<"Name: "<<name<<endl;
cout<<"Phoneno: "<<phoneno<<endl;
cout<<"Accounttype: "<<accounttype<<endl;
}
void banking::showdata()
{
cout<<"\n" ;
cout<<"Name: "<<name<<endl;
cout<<"Phoneno: "<<phoneno<<endl;
cout<<"Accountno: "<<accountno<<endl;
cout<<"Accounttype: "<<accounttype<<endl;
cout<<"Account Balance :"<<balance<<endl;
}
banking b;
fstream fp;
void write_account()
{
fp.open("Accountdetails.txt",ios::app);
b.getdata();
b.assignaccountno();
fp.write((char*)&b,sizeof(b));
fp.close();
}
void accountdetails()
{
char nm[30];
char pinn[10];
int found =0;
cout<<"Enter Name of the Account Holder :";
cin>>nm;
cout<<endl;
cout<<"Enter Pin :";
cin>>pinn;
fp.open("Accountdetails.txt",ios::in);
while(fp.read((char*)&b,sizeof(b)))
{
if(strcmp(b.getname(),nm)==0)
{ found++;
cout<<"The Account You Searched For is :"<<endl;
b.showdata();
}
}
if(found==0)
cout<<endl<<"No Account Found with these Credentials";
fp.close();
}
void showaccounts()
{
fp.open("Accountdetails.txt",ios::in);
while(fp.read((char*)&b,sizeof(b)))
{
b.showall();
cout<<"\n\n====================================\n";
getch();
}
fp.close();
}
void banking::assignaccountno()
{
accountno++;
}
int banking::adddeposit(int deposit)
{
balance=balance+deposit;
}
int banking::withdraw(int money)
{
balance=balance-money;
}
void changedetails()
{ int found =0;
char nm[30],pinn[10];
cout<<"Enter Name of the account holder :";
cin>>nm;
cout<<"Enter Pin :";
cin>>pinn;
fp.open("Accountdetails.txt",ios::in|ios::out);
while(fp.read((char*)&b,sizeof(b)))
{
if(strcmp(b.getname(),nm)==0)
{
if(strcmp(b.getpin(),pinn)==0)
{ found++;
b.showdata();
getch();
cout<<endl;
b.getmdata();
int pos=-1*sizeof(b);
fp.seekp(pos,ios::cur);
fp.write((char*)&b,sizeof(b));
}
}
}
if(found==0)
cout<<endl<<"No Account Found with these Credentials";
fp.close();
}
void transact()
{ int deposit,money,option,found=0;
cout<<"\t \t \t \t \t \t Enter your Choice :(Deposit/Withdraw)"<<endl;
cout<<"\t \t \t \t \t 1.Deposit"<<endl;
cout<<"\t \t \t \t \t 2.Withdraw"<<endl;
cout<<"\t \t \t \t \t 3.Exit to MAin Menu"<<endl;
cin>>option;
cout<<endl;
if(option ==3)
return;
if(option==1)
{
char nm[30];
char pinn[10];
cout<<"Enter Name of the Account Holder :";
cin>>nm;
cout<<endl;
cout<<"Enter Pin :";
cin>>pinn;
cout<<endl;
fp.open("Accountdetails.txt",ios::in|ios::out);
while(fp.read((char*)&b,sizeof(b)))
{
if(strcmp(b.getname(),nm)==0)
{
if(strcmp(b.getpin(),pinn)==0)
{
found++;
cout<<"Enter the amount to be Deposited :";
cin>>deposit;
b.adddeposit(deposit);
int pos=-1*sizeof(b);
fp.seekp(pos,ios::cur);
fp.write((char*)&b,sizeof(b));
cout<<"Your account Balance is: ";
b.check_balance();
}
}
}
}
if(option==2)
{
char nm[30];
char pinn[10];
cout<<"Enter Name of the Account Holder :";
cin>>nm;
cout<<endl;
cout<<"Enter Pin :";
cin>>pinn;
cout<<endl;
fp.open("Accountdetails.txt",ios::in|ios::out);
while(fp.read((char*)&b,sizeof(b)))
{
if(strcmp(b.getname(),nm)==0)
{
if(strcmp(b.getpin(),pinn)==0)
{
found++;
cout<<"Enter the amount to be Withdrawn :";
cin>>money;
b.withdraw(money);
int pos=-1*sizeof(b);
fp.seekp(pos,ios::cur);
fp.write((char*)&b,sizeof(b));
cout<<"Your account Balance is: ";
b.check_balance();
}
}
}
}
if(found==0)
cout<<endl<<"No Account Found with these Credentials";
fp.close();
}
void closeaccount()
{
int found =0;
char confirm ='n';
fstream fp2;
fp2.open("Temp.txt",ios::in|ios::out|ios::app);
char nm[30];
char pinn[10];
cout<<"Enter Name of the Account Holder :";
cin>>nm;
cout<<endl;
cout<<"Enter Pin :";
cin>>pinn;
cout<<endl;
fp.open("Accountdetails.txt",ios::in|ios::out);
fp.seekg(0,ios::beg);
while(fp.read((char*)&b,sizeof(b)))
{
if(strcmp(b.getname(),nm)==0)
{
if(strcmp(b.getpin(),pinn)==0)
{ cout<<endl;
b.showdata();
found=1;
cout<<endl<<"Are you Sure you want to Delete your account (y/n) :";
cin>>confirm;
if(confirm =='n')
{
fp2.write((char*)&b,sizeof(b));
cout<<endl<<"Account Still Open ";
}
}
}
else
fp2.write((char*)&b,sizeof(b));
}
if(confirm =='y')
cout<<endl<<"Account Deleted..";
fp.close();
fp2.close();
remove("Accountdetails.txt");
rename("Temp.txt","Accountdetails.txt");
if(found==0)
cout<<endl<<"No Account Found With these Credentials";
getch();
}
void menu()
{
char ch;
do
{
system("cls");
cout<<endl<<endl<<endl<<endl;
cout<<"\t \t \t \t \t \t Banking System";
cout<<endl<<endl;
cout<<"\t \t \t \t \t 1.Open Account";
cout<<endl<<endl;
cout<<"\t \t \t \t \t 2.See All Accounts";
cout<<endl<<endl;
cout<<"\t \t \t \t \t 3.Account Details";
cout<<endl<<endl;
cout<<"\t \t \t \t \t 4.Deposit Money/Withdraw Money";
cout<<endl<<endl;
cout<<"\t \t \t \t \t 5.Change Details";
cout<<endl<<endl;
cout<<"\t \t \t \t \t 6.Close Account";
cout<<endl<<endl;
cout<<"\t \t \t \t \t 7.Exit";
cout<<endl<<endl;
cout<<"\t \t \t \t \t Enter your choice(1-7) : ";
ch=getch();
switch (ch){
case '1':system("cls");
write_account();
getch();
break;
case '2': system("cls");
showaccounts();
getch();
break;
case '3':system("cls");
accountdetails();
getch();
break;
case '4': system("cls");
transact();
getch();
break;
case '5': system("cls");
changedetails();
getch();
break;
case '6': system("cls");
closeaccount();
getch();
break;
case '7': system("cls");
exit(0);
default:cout<<"ENTER VALID CHOICE";
system("cls");
}
}
while(ch!='7');
}
int main()
{
menu();
return 0;
}