public static void main()
{
SavingsAccount saveAcct= new SavingsAccount(350,"Scott Brumbaugh");
CheckingAccount checkAcct = new CheckingAccount(700,"David Paul Heimerman");
StudentChecking sCheckAcct = new StudentChecking(100,"Craig Aking");
InterestChecking intCkAcct = new InterestChecking(434,"Douglas Heck");
System.out.println("My Name is ");
System.out.println("Account Balances");
System.out.println(saveAcct.toString());
System.out.println(checkAcct.toString());
System.out.println(sCheckAcct.toString());
System.out.println(intCkAcct.toString());
saveAcct.chargeMonthlyFee();
checkAcct.chargeMonthlyFee();
sCheckAcct.chargeMonthlyFee();
intCkAcct.chargeMonthlyFee();
System.out.println("Account Balances after Monthly Fees");
System.out.println(saveAcct.toString());
System.out.println(checkAcct.toString());
System.out.println(sCheckAcct.toString());
System.out.println(intCkAcct.toString());
saveAcct.addInterest();
intCkAcct.addInterest();
System.out.println("Account Balances after Interest added");
System.out.println(saveAcct.toString());
System.out.println(checkAcct.toString());
System.out.println(sCheckAcct.toString());
System.out.println(intCkAcct.toString());
}//end main