public class CheckingAccount extends BankAccount
{
  //    public final double FEE = .15;
	 private static final double FEE = 0.15 ;
	 
	 public CheckingAccount(String name , double initAmount )
	 {
	   // String temp;
	    super(name, initAmount);
       String temp;
	    temp = getAccountNumber();
	  	 temp = temp + "-10";
		 setAccountNumber(temp);
	//  setAccountNumber ( getAccountNumber() + "-10");
	  }// end constructor

   // super class withdraw header     public boolean withdraw(double amount)
	 public boolean withdraw (double amount)
	 {
	    boolean result;
	    amount = amount + FEE;
		 result = super.withdraw(amount);
		 return result;
		 // return (super.withdraw(amount));
		 
	 }// end withdraw
}// end class	 


	 