System.out.print("Depositing " + amount);
double newBalance = balance + amount;
The balance field is still 0, and the newBalance local variable is 100
System.out.println(", new balance is " + newBalance);
balance = newBalance;
The balance is now 100 instead of 0 because the deposit method used the
OLD balance