-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccount.java
More file actions
239 lines (215 loc) · 7.42 KB
/
Account.java
File metadata and controls
239 lines (215 loc) · 7.42 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
import java.text.DecimalFormat;
import java.util.InputMismatchException;
import java.util.Scanner;
public class Account {
// variables
private int customerNumber;
private int pinNumber;
private double checkingBalance = 0;
private double savingBalance = 0;
Scanner input = new Scanner(System.in);
DecimalFormat moneyFormat = new DecimalFormat("'$'###,##0.00");
// non-constructor
public Account() {
}
//parameter-constructor
public Account(int customerNumber, int pinNumber) {
this.customerNumber = customerNumber;
this.pinNumber = pinNumber;
}
public Account(int customerNumber, int pinNumber, double checkingBalance, double savingBalance) {
this.customerNumber = customerNumber;
this.pinNumber = pinNumber;
this.checkingBalance = checkingBalance;
this.savingBalance = savingBalance;
}
//getter & setter
public int setCustomerNumber(int customerNumber) {
this.customerNumber = customerNumber;
return customerNumber;
}
public int getCustomerNumber() {
return customerNumber;
}
public int setPinNumber(int pinNumber) {
this.pinNumber = pinNumber;
return pinNumber;
}
public int getPinNumber() {
return pinNumber;
}
public double getCheckingBalance() {
return checkingBalance;
}
public double getSavingBalance() {
return savingBalance;
}
public double calcCheckingWithdraw(double amount) {
checkingBalance = (checkingBalance - amount);
return checkingBalance;
}
public double calcSavingWithdraw(double amount) {
savingBalance = (savingBalance - amount);
return savingBalance;
}
public double calcCheckingDeposit(double amount) {
checkingBalance = (checkingBalance + amount);
return checkingBalance;
}
public double calcSavingDeposit(double amount) {
savingBalance = (savingBalance + amount);
return savingBalance;
}
public void calcCheckTransfer(double amount) {
checkingBalance = checkingBalance - amount;
savingBalance = savingBalance + amount;
}
public void calcSavingTransfer(double amount) {
savingBalance = savingBalance - amount;
checkingBalance = checkingBalance + amount;
}
public void getCheckingWithdrawInput() {
boolean end = false;
while (!end) {
try {
System.out.println("\nCurrent Checkings Account Balance: " + moneyFormat.format(checkingBalance));
System.out.print("\nAmount you want to withdraw from Checkings Account: ");
double amount = input.nextDouble();
if ((checkingBalance - amount) >= 0 && amount >= 0) {
calcCheckingWithdraw(amount);
System.out.println("\nCurrent Checkings Account Balance: " + moneyFormat.format(checkingBalance));
end = true;
} else {
System.out.println("\nBalance Cannot be Negative.");
}
} catch (InputMismatchException e) {
System.out.println("\nInvalid Choice.");
input.next();
}
}
}
public void getsavingWithdrawInput() {
boolean end = false;
while (!end) {
try {
System.out.println("\nCurrent Savings Account Balance: " + moneyFormat.format(savingBalance));
System.out.print("\nAmount you want to withdraw from Savings Account: ");
double amount = input.nextDouble();
if ((savingBalance - amount) >= 0 && amount >= 0) {
calcSavingWithdraw(amount);
System.out.println("\nCurrent Savings Account Balance: " + moneyFormat.format(savingBalance));
end = true;
} else {
System.out.println("\nBalance Cannot Be Negative.");
}
} catch (InputMismatchException e) {
System.out.println("\nInvalid Choice.");
input.next();
}
}
}
public void getCheckingDepositInput() {
boolean end = false;
while (!end) {
try {
System.out.println("\nCurrent Checkings Account Balance: " + moneyFormat.format(checkingBalance));
System.out.print("\nAmount you want to deposit from Checkings Account: ");
double amount = input.nextDouble();
if ((checkingBalance + amount) >= 0 && amount >= 0) {
calcCheckingDeposit(amount);
System.out.println("\nCurrent Checkings Account Balance: " + moneyFormat.format(checkingBalance));
end = true;
} else {
System.out.println("\nBalance Cannot Be Negative.");
}
} catch (InputMismatchException e) {
System.out.println("\nInvalid Choice.");
input.next();
}
}
}
public void getSavingDepositInput() {
boolean end = false;
while (!end) {
try {
System.out.println("\nCurrent Savings Account Balance: " + moneyFormat.format(savingBalance));
System.out.print("\nAmount you want to deposit into your Savings Account: ");
double amount = input.nextDouble();
if ((savingBalance + amount) >= 0 && amount >= 0) {
calcSavingDeposit(amount);
System.out.println("\nCurrent Savings Account Balance: " + moneyFormat.format(savingBalance));
end = true;
} else {
System.out.println("\nBalance Cannot Be Negative.");
}
} catch (InputMismatchException e) {
System.out.println("\nInvalid Choice.");
input.next();
}
}
}
public void getTransferInput(String accType) {
boolean end = false;
while (!end) {
try {
if (accType.equals("Checkings")) {
System.out.println("\nSelect an account you wish to tranfers funds to:");
System.out.println("1. Savings");
System.out.println("2. Exit");
System.out.print("\nChoice: ");
int choice = input.nextInt();
switch (choice) {
case 1:
System.out.println("\nCurrent Checkings Account Balance: " + moneyFormat.format(checkingBalance));
System.out.print("\nAmount you want to deposit into your Savings Account: ");
double amount = input.nextDouble();
if ((savingBalance + amount) >= 0 && (checkingBalance - amount) >= 0 && amount >= 0) {
calcCheckTransfer(amount);
System.out.println("\nCurrent Savings Account Balance: " + moneyFormat.format(savingBalance));
System.out.println(
"\nCurrent Checkings Account Balance: " + moneyFormat.format(checkingBalance));
end = true;
} else {
System.out.println("\nBalance Cannot Be Negative.");
}
break;
case 2:
return;
default:
System.out.println("\nInvalid Choice.");
break;
}
} else if (accType.equals("Savings")) {
System.out.println("\nSelect an account you wish to tranfers funds to: ");
System.out.println("1. Checkings");
System.out.println("2. Exit");
System.out.print("\nChoice: ");
int choice = input.nextInt();
switch (choice) {
case 1:
System.out.println("\nCurrent Savings Account Balance: " + moneyFormat.format(savingBalance));
System.out.print("\nAmount you want to deposit into your savings account: ");
double amount = input.nextDouble();
if ((checkingBalance + amount) >= 0 && (savingBalance - amount) >= 0 && amount >= 0) {
calcSavingTransfer(amount);
System.out.println("\nCurrent checkings account balance: " + moneyFormat.format(checkingBalance));
System.out.println("\nCurrent savings account balance: " + moneyFormat.format(savingBalance));
end = true;
} else {
System.out.println("\nBalance Cannot Be Negative.");
}
break;
case 2:
return;
default:
System.out.println("\nInvalid Choice.");
break;
}
}
} catch (InputMismatchException e) {
System.out.println("\nInvalid Choice.");
input.next();
}
}
}
}