Thanks. Ok next question,
For the following code in main():
Account[] accs = new Account[1] ;
I get the following error:
cannot find symbol
symbol : constructor Account(java.lang.String,int,int)
location: class Account
accs[0] = new Account( "Pauline Smith", 300, 250 ) ;
^