micher43

E3.4 (BankAccountTester)

Oct 1st, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. //no need to import BankAccount because it's in the same package
  2. public class BankAccountTester {
  3.  
  4.     public static void main(String[] args) {
  5.         BankAccount momsSavings = new BankAccount(1000.00);
  6.         momsSavings.addInterest(10);
  7.         System.out.println(momsSavings.GetBalance());
  8.        
  9.  
  10.        
  11.     }
  12.  
  13. }
Add Comment
Please, Sign In to add comment