public class bankAccount { private double balance; private String name; private double interestRate; private int acctnumber; private double pot, q; public void bankAccount(String n, int act, double b) { name=n; acctnumber = act; balance = b; } public void deposit(double amt) { // if to make sure amt > 0 would be better balance = balance + amt; } public void withdraw(double amt) { // this if is important if (balance >= amt) { balance = balance - amt; } } public double getBalance() { return balance; } public void takeMoneyFrom(bankAccount other, double amt) { if (other.balance >= amt) { other.withdraw(amt); this.deposit(amt); } } public void giveMoneyTo(bankAccount other, double amt) { if (balance >= amt) { balance = balance - amt; other.balance = other.balance + amt; } } }