public class SalariedEmployee extends Employee { private double salary; public SalariedEmployee(String last, String first, String ID, String title, double salary) { super(last, first, ID, title); this.salary = salary; } public double computeRegularPay() { return salary/52; } }