How to add these things? Add fields?
int employeeKind; // VIP = 1, salaried = 2 // regular = 3
double bonus; // bonus for VIP only
double hourlyWage; // for regular emp only
// method to set bonus if employee is VIPpublic setBonus(double b) { if (employeeKind == 1) bonus = b; }
Many other changes required. . .