//******************************************************************** // Banking.java Author: Sophie Quigley // // Let's do some banking at The Bank. // //******************************************************************** public class Banking6 { public static void main (String[] args) { // Create a customers with an account Customer6 me = new Customer6("Sophie Quigley", "416-979-5000X7401", "quigley@ryerson.ca",Customer6.UNKNOWN_CREDIT); Account6 myaccount = new Account6(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()); } }