//******************************************************************** // Banking.java Author: Sophie Quigley // // Let's do some banking at The Bank. // //******************************************************************** public class Banking3 { public static void main (String[] args) { // Create a customers with an account Customer3 me = new Customer3("Sophie Quigley", "416-979-5000X7401", "quigley@ryerson.ca"); Account3 myaccount = new Account3(me); //Do stuff on myaccount myaccount.Withdraw(50); System.out.println("My balance is: "+myaccount.Balance()); myaccount.Deposit(100); System.out.println("My balance is: "+myaccount.Balance()); myaccount.Withdraw(50); System.out.println("My balance is: "+myaccount.Balance()); } }