//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 SavingsAccount extends Account { public SavingsAccount() { } public SavingsAccount(Customer c, double b, int n) { super(c, b, n); } public void deposit(Transaction trans) { } public void addInterest() { balance = balance + custom.savingsInterest * balance / 100.0; } public void withdraw(Transaction trans) { } public void openAccount(Transaction first) { } }