-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmployeePayroll.java
77 lines (60 loc) · 1.91 KB
/
EmployeePayroll.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
class Customer {
private final String name;
private final int customerId;
public Customer(String name, int customerId) {
this.name = name;
this.customerId = customerId;
}
public String getName() {
return name;
}
public int getCustomerId() {
return customerId;
}
}
class Account {
private final int accountId;
private final Customer customer;
private double balance;
public Account(int accountId, Customer customer, double balance) {
this.accountId = accountId;
this.customer = customer;
this.balance = balance;
}
public int getAccountId() {
return accountId;
}
public Customer getCustomer() {
return customer;
}
public double getBalance() {
return balance;
}
public void deposit(double amount) {
balance += amount;
}
public void withdraw(double amount) {
if (balance >= amount) {
balance -= amount;
}
}
public void transfer(Account destinationAccount, double amount) {
if (balance >= amount) {
withdraw(amount);
destinationAccount.deposit(amount);
}
}
}
public class EmployeePayroll {
public static void main(String[] args) {
Customer customer1 = new Customer("Alice", 1);
Customer customer2 = new Customer("Bob", 2);
Account account1 = new Account(101, customer1, 1000);
Account account2 = new Account(102, customer2, 500);
account1.deposit(500);
account1.withdraw(200);
account1.transfer(account2, 300);
System.out.println("Final balance in account " + account1.getAccountId() + ": " + account1.getBalance());
System.out.println("Final balance in account " + account2.getAccountId() + ": " + account2.getBalance());
}
}