// to represent a savings account in a bank public class Savings extends Account{ double interest; // The interest rate at which their money grows. Savings(int accountNum, int balance, String name, double interest){ super(accountNum, balance, name); this.interest = interest; } }