forked from mad003/Bank-Management_System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbank_management.java
278 lines (207 loc) · 7.58 KB
/
bank_management.java
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
import java.util.Scanner;
class root {
Scanner sc = new Scanner(System.in);
double AccountCharges(double n) {
double x = n;
x = (0.10) * x;
if (x < 50) {
return x;
} else {
x = 50;
return x;
}
}
double Interest(double n) {
double x = n * (0.07);
return x;
}
}
class Regular_Account extends root {
@Override
double Interest(double n) {
return 0;
}
double Penalty(double n) {
if (n < 500) {
return 100;
} else {
return 0;
}
}
}
class Interest_Account extends root {
double Penalty(double n) {
return 0;
}
}
class Checking_Account extends root {
double Penalty(double n) {
if (n < 1000) {
return 50;
} else {
return 0;
}
}
void Charge_Transaction() {
double x;
System.out.println("Enter amount of money: ");
x = sc.nextInt();
x = x * (0.10);
System.out.print("Amount for Sucessful Transaction : ");
System.out.print(x);
}
}
class CD_Account extends root {
@Override
double Interest(double n) {
double x = n * (0.15);
return x;
}
double Penalty(double n) {
System.out.println("Penalty due to withdrawal before 12 months.");
double x = n * (0.2);
return x;
}
}
public class bank_management {
static Scanner sc = new Scanner(System.in);
static float pin, balance;
static int id = 0;
static float cur[][] = new float[100][3];
public static void Create_Account(int x) {
System.out.println("Your PIN is : " + Integer.toString(id));
System.out.println("Entre your Balance : ");
balance = sc.nextFloat();
cur[id][0] = id;
cur[id][1] = balance;
cur[id][2] = x;
id++;
}
public static boolean Check_Account(int pin, int x) {
for (int i = 0; i < id; i++) {
if (cur[i][0] == pin && cur[i][2] == x) {
return true;
}
}
return false;
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println();
while (true) {
System.out.println("1.open new Account.");
System.out.println("2. Existing Account.");
System.out.println("3. Exit");
int choice = sc.nextInt();
if (choice == 3) {
break;
}
System.out.println("Enter type of Account : ");
System.out.println("[1].Regular account");
System.out.println("[2].Interest account");
System.out.println("[3].Checking Accont");
System.out.println("[4].CD account");
int x = sc.nextInt();
if (choice == 1) {
Create_Account(x);
} else {
int pin;
System.out.println("Entre your PIN : ");
pin = sc.nextInt();
if (Check_Account(pin, x)) {
System.out.println("*|***************************************|*");
System.out.println("*|*Welcome to Our Bank Management System*|*");
System.out.println("*|***************************************|*");
while (true) {
double ans;
double BALANCE = cur[pin][1];
if (x == 1) {
Regular_Account current = new Regular_Account();
while (true) {
System.out.println("1. Account Charges");
System.out.println("2. Interest Charges");
System.out.println("3. Penalty");
System.out.println("4. Exit");
int y = sc.nextInt();
if (y == 4) {
break;
} else if (y == 3) {
ans = current.Penalty(BALANCE);
System.out.println(ans);
} else if (y == 2) {
ans = current.Interest(BALANCE);
System.out.println(ans);
} else {
ans = current.AccountCharges(BALANCE);
}
}
} else if (x == 2) {
Interest_Account current = new Interest_Account();
while (true) {
System.out.println("1. Account Charges");
System.out.println("2. Interest Charges");
System.out.println("3. Penalty");
System.out.println("4. Exit");
int y = sc.nextInt();
if (y == 4) {
break;
} else if (y == 3) {
ans = current.Penalty(BALANCE);
System.out.println(ans);
} else if (y == 2) {
ans = current.Interest(BALANCE);
System.out.println(ans);
} else {
ans = current.AccountCharges(BALANCE);
}
}
} else if (x == 3) {
Checking_Account current = new Checking_Account();
while (true) {
System.out.println("1. Account Charges");
System.out.println("2. Interest Charges");
System.out.println("3. Penalty");
System.out.println("4. Exit");
int y = sc.nextInt();
if (y == 4) {
break;
} else if (y == 3) {
ans = current.Penalty(BALANCE);
System.out.println(ans);
} else if (y == 2) {
ans = current.Interest(BALANCE);
System.out.println(ans);
} else {
ans = current.AccountCharges(BALANCE);
}
}
} else {
CD_Account current = new CD_Account();
while (true) {
System.out.println("1. Account Charges");
System.out.println("2. Interest Charges");
System.out.println("3. Penalty");
System.out.println("4. Exit");
int choice1 = sc.nextInt();
if (choice1 == 4) {
break;
} else if (choice1 == 3) {
ans = current.Penalty(BALANCE);
System.out.println(ans);
} else if (choice1 == 2) {
ans = current.Interest(BALANCE);
System.out.println(ans);
} else {
ans = current.AccountCharges(BALANCE);
}
}
}
}
}
else {
System.out.println("Check your PIN and TYPE of Account and Enter again");
}
}
}
}
}