calcpage

C3X1_BankAccountTester.java

Sep 30th, 2011
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. //BankAccountTester.java    MrG 2011.0930
  2. public class BankAccountTester
  3. {
  4.     public static void main(String[] args)
  5.     {
  6.         BankAccount bob = new BankAccount();
  7.         bob.deposit(1000);
  8.         bob.withdraw(500);
  9.         bob.withdraw(400);
  10.         System.out.println("balance = " + bob.getBalance());
  11.     }
  12. }
  13.  
  14.  
Add Comment
Please, Sign In to add comment