A retail company assigns a $5000 store bonus if monthly sales are more than $100,000; otherwise a $500 store bonus is awarded. Additionally, they are doing away with the previous day off program and now using a percent of sales increase to determine if employees get individual bonuses. If sales increased by at least 4% then all employees get a $50 bonus. If they do not, then individual bonuses are 0. Step 4: Write a module that will ask the user to enter the percent of sales increase in decimal format. This module will have to accept salesIncrease as a reference. Complete the missing lines. //MODULE 3 //this module takes in percent of increase in decimal //format such as .02 for 2 percent. Module getIncrease(Real Ref _________________) Display “________________________________________.” Input ___________________________________________ End Module
A retail company assigns a $5000 store bonus if monthly sales are more than $100,000; otherwise a $500 store bonus is awarded. Additionally, they are doing away with the previous day off program and now using a percent of sales increase to determine if employees get individual bonuses. If sales increased by at least 4% then all employees get a $50 bonus. If they do not, then individual bonuses are 0.
Step 4: Write a module that will ask the user to enter the percent of sales increase in decimal format. This module will have to accept salesIncrease as a reference. Complete the missing lines.
//MODULE 3
//this module takes in percent of increase in decimal
//format such as .02 for 2 percent.
Module getIncrease(Real Ref _________________)
Display “________________________________________.”
Input ___________________________________________
End Module
Here, we have to complete the step 4 using the given information:
The module will ask the user to enter the percent of sales increase in decimal format. This module will have to accept salesIncrease as a reference. Complete the missing lines.
Given module code:
//MODULE 3
//this module takes in percent of the increase in decimal
//format such as .02 for 2 percent.
Module getIncrease(Real Ref _________________)
Display “________________________________________.”
Input ___________________________________________
End Module
Step by step
Solved in 2 steps