-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBankingSystemManagement.java
More file actions
183 lines (121 loc) · 4.63 KB
/
BankingSystemManagement.java
File metadata and controls
183 lines (121 loc) · 4.63 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
import java.util.*;
class BankingSystemManagement {
//Bank Account class data
class BankAccount{
private String accountId;
private double amount;
BankAccount(String accountId, double amount){
this.accountId = accountId;
this.amount = amount;
}
//setters
public void setAmount(double amount){
try{
if(amount>=0.00){
double newAmount = amount;
this.amount += newAmount;
}
}catch(Exception e){
System.out.println("amount must be greater than or equal $0.00\n");
}
}
//getters
public double getAmount(){
return amount;
}
}
//Banking System class data
class BankingSystem{
private Map<String, BankAccount> bankAccounts;
public BankingSystem() {
this.bankAccounts = new HashMap<>();
}
//setters
public void addAccount(String accountId, double amount){
if(!bankAccounts.containsKey(accountId)){
BankAccount newAcc = new BankAccount(accountId, amount);
bankAccounts.put(accountId, newAcc);
System.out.println("account created and added to system\n");
} else {
System.out.println(String.format("account: %s already exists\n", accountId));
}
}
public void removeAccount(String accountId){
if(bankAccounts.containsKey(accountId)){
bankAccounts.remove(accountId);
System.out.println(String.format("account: %s removed\n", accountId));
} else {
System.out.println("bank account does not exist\n");
}
}
public void depositAmount(String accountId, double amount){
if(bankAccounts.containsKey(accountId)){
BankAccount acc = bankAccounts.get(accountId);
acc.setAmount(amount);
System.out.println(String.format("account: %s 's current balance is: %.2f\n", acc.accountId, acc.amount));
} else {
System.out.println(String.format("account: %s not found\n", accountId));
}
}
public void withdrawAmount(String accountId, double amount){
if(bankAccounts.containsKey(accountId)){
BankAccount acc = bankAccounts.get(accountId);
double amountWithdrawn = amount;
double currentBalance = acc.getAmount();
try{
if(currentBalance>=amountWithdrawn){
acc.amount -= amountWithdrawn;
/*acc.setAmount(updatedBalance);*/
System.out.println(String.format("account: %s 's current balance: %.2f\n", acc.accountId, acc.amount));
}
}catch(Exception e){
System.out.println(String.format("insufficient balance: %.2f\n", acc.amount));
}
}else{
System.out.println(String.format("account: %s not found\n", accountId));
}
}
public void transferAmount(String sourceAccountId, String destinationAccountId, double amount){
if(bankAccounts.containsKey(sourceAccountId) && bankAccounts.containsKey(destinationAccountId)){
BankAccount sourceAcc = bankAccounts.get(sourceAccountId);
BankAccount destinationAcc = bankAccounts.get(destinationAccountId);
double transferAmount = amount;
double sourceBalance = sourceAcc.getAmount();
double destinationBalance = destinationAcc.getAmount();
try{
if(sourceBalance>=transferAmount){
sourceAcc.amount -= transferAmount;
/*sourceAcc.setAmount(sourceBalance);*/
destinationAcc.amount += transferAmount;
System.out.println("Successful transfer!\n");
System.out.println(String.format("account: %s 's current balance is: %.2f\n", sourceAcc.accountId, sourceAcc.amount));
System.out.println(String.format("account: %s 's current balance is: %.2f\n", destinationAcc.accountId, destinationAcc.amount));
}else{ System.out.println("insufficient balance\n"); }
}catch(Exception e){
System.out.println("Error: entered negative amount, please try again\n");
}
}else if(!bankAccounts.containsKey(destinationAccountId)){
System.out.println(String.format("destination account: %s not found\n", destinationAccountId));
}else{
System.out.println("Transfer failed because one or more accounts do not exist\n");
}
}
//getters
public void getAccount(String accountId){
if(bankAccounts.containsKey(accountId))
{
BankAccount currentAccount = bankAccounts.get(accountId);
System.out.println(String.format("account: %s has current balance of: %.2f\n", currentAccount.accountId, currentAccount.amount));
}else{
System.out.println(String.format("account: %s is not in the system\n", accountId));
}
}
public void getAllAccounts(){
System.out.println("All accounts in Banking System:\n");
for(BankAccount acc : bankAccounts.values()) {
System.out.println(String.format("account: %s has current balance of: %.2f\n", acc.accountId, acc.amount));
System.out.println("");
}
}
}
}