void transfer(double amount, double otherBalance){ balance = balance - amount; otherBalance = otherBalance + amount;}
double savingsBalance = 1000;harrysChecking.transfer(500, savingsBalance);System.out.println(savingsBalance);