CS计算机代考程序代写 package programmingexample7;

package programmingexample7;

public class Engineer extends Employee {

private double bonus;

public Engineer(String title, String firstName, String lastName, int quota, double bonus) {
super(title, firstName, lastName, quota);
this.bonus = bonus;
}

public double calculateSalary() {
double totalSal;
totalSal = super.getBaseSalary() + bonus
+ super.calculateParkingFringeBenefits() – super.calculateTax();
return totalSal;
}
}