// CSE 143, Winter 2012 // This client program uses the BankAccount class. public class Client { public static void main(String[] args) { BankAccount bob = new BankAccount("Bob", 1234); bob.deposit(20.00); bob.withdraw(5.50); bob.deposit(85.75); bob.deposit(15.25); bob.withdraw(19.50); bob.printLog(); } }