1: 2: /** 3: This class is used in the program LocalVariablesDemoProgram. 4: */ 5: public class BankAccount 6: { 7: public double amount; 8: public double rate; 9: 10: public void showNewBalance( ) 11: { 12: double newAmount = amount + (rate/100.0)*amount; 13: System.out.println("With interest added, the new amount is $" + 14: newAmount); 15: } 16: }