-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBankingApplication.java
176 lines (166 loc) · 4.2 KB
/
BankingApplication.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
import java.util.*;
import java.io.*;
class InvalidAmountException extends Exception{
InvalidAmountException( String message){
super(message);
}
}
class InsufficientFundException extends Exception{
InsufficientFundException(String message){
super(message);
}
}
class Bank{
String accountNumber;
String name;
int balance;
static Scanner sc = new Scanner(System.in);
static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
void displayDetails() {
System.out.println("______________________________");
System.out.println("Name :- "+name);
System.out.println("Account Number :- "+accountNumber);
System.out.println("Balance :- "+balance);
}
void openAccount() {
System.out.println("Enter the details of person : ");
System.out.println("Name :- ");
try {
name=br.readLine();
} catch (IOException e) {
e.printStackTrace();
}
System.out.println("Account Number :- ");
accountNumber=sc.next();
System.out.println("Balance :- ");
balance=sc.nextInt();
}
boolean search(String accNo) {
if (accNo.equals(accountNumber)) {
return (true);
}
else {
return (false);
}
}
void deposit() {
System.out.println("Enter the amount");
int amount = sc.nextInt();
try {
if(amount<=0){
throw new InvalidAmountException("Invalid Amount");
}
else{
System.out.println("Amount is Credited");
balance=balance+amount;
System.out.println("Your Current Balance :- "+balance);
}
}
catch(InvalidAmountException e) {
System.out.println(e);
}
}
void withdraw(){
System.out.println("Enter the amount");
int amount = sc.nextInt();
try {
if(amount<=0){
throw new InvalidAmountException("Invalid Amount");
}
else if(amount>balance){
throw new InsufficientFundException("Insufficient Balance");
}
else{
System.out.println("Amount is Debited");
balance=balance-amount;
System.out.println("Your Current Balance :- "+balance);
}
}
catch(InvalidAmountException e) {
System.out.println(e);
}
catch(InsufficientFundException e) {
System.out.println(e);
}
}
}
public class BankingApplication {
public static void main(String []args) {
boolean person = false;
String accNo;
int i,noOfAcc;
Scanner sc =new Scanner(System.in);
System.out.println("Enter the no. of customers");
noOfAcc=sc.nextInt();
Bank custo[] = new Bank [noOfAcc];
for(i=0;i<noOfAcc;i++) {
custo[i] = new Bank();
custo[i].openAccount();
}
System.out.println("Displaying all accounts");
for(i=0;i<noOfAcc;i++) {
custo[i].displayDetails();
}
int option;
do {
System.out.println("_____________________________");
System.out.println("Choose your Option");
System.out.println("1.Display All Accounts\n2.Search account\n3.Deposit\n4.Withdraw\n5.Exit");
option = sc.nextInt();
switch (option){
case 1:
for(i=0;i<noOfAcc;i++) {
custo[i].displayDetails();
}
break;
case 2:
System.out.println("Enter your Account Number");
accNo=sc.next();
for(i=0;i<noOfAcc;i++) {
person = custo[i].search(accNo);
if (person) {
custo[i].displayDetails();
break;
}
}
if(!person) {
System.out.println("Account Not Found !");
}
break;
case 3 :
System.out.println("Enter your Account Number");
accNo=sc.next();
for(i=0;i<noOfAcc;i++) {
person = custo[i].search(accNo);
if (person) {
custo[i].deposit();
break;
}
}
if(!person) {
System.out.println("Account Not Found !");
}
break;
case 4 :
System.out.println("Enter your Account Number");
accNo=sc.next();
for(i=0;i<noOfAcc;i++) {
person = custo[i].search(accNo);
if (person) {
custo[i].withdraw();
break;
}
}
if(!person) {
System.out.println("Account Not Found !");
}
break;
case 5 :
System.out.println("Thank you");
break;
default :
System.out.println("Invalid selection");
}
}while(option!=5);
}
}