Source of BankAccount.java


  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:     public void showNewBalance( )
 10:     {
 11:         double newAmount = amount + (rate/100.0)*amount;
 12:         System.out.println("With interest added the new amount is $"
 13:                                          + newAmount);
 14:     }
 15: }