Question: / / Member function to calculate payroll double calculatePayroll ( ) const { double payroll = grossSales * commissionRate; / / Add $ 1 0

// Member function to calculate payroll
double calculatePayroll() const {
double payroll = grossSales * commissionRate;
// Add $100.00 if it's the employee's birthday month
if (isBirthdayMonth()){
payroll +=100.0;
cout << "Birthday bonus of $100.00 added to the payroll!" << endl;
}
return payroll;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!