//package cis223.Bank; import myIO.*; /* Class SavingsAccount and CheckingAccount extend Account SavingsAccount has methods: deposit, withdraw, addInterest CheckingAccount has methods: withdraw, deposit, addInterest */ public class CheckingAccount extends Account { public CheckingAccount() { } public CheckingAccount(Customer c, double b, int n) { super(c, b, n); } public void deposit(Transaction trans) { } public void addInterest() { balance = balance + custom.checkingInterest * balance / 100.0; } public void withdraw(Transaction trans) { } public void openAccount(Transaction first) { } }