Question: 1. A program that will calculate and print the total pay for an employee who gets paid the normal rate for each hour less or
1. A program that will calculate and print the total pay for an employee who gets paid the normal rate for each hour less or equal to 40, and 1.5 times the normal rate for each hour over 40 as follows:
Input: hours = getHoursWorked();
Processing: calculate the gross pay by calling a value returning function from main() named: CalcGross
Output: value obtained from CalcGross and printed in main().
2. A program will calculate and print the miles per gallon as follows:
Input in main(): miles = GetMiles():
gallons = GetNumGallons():
Processing: calculate the miles per gallon by calling a value returning function from main() named: CalcMpg
output: Value returned from CalcMpg and printed in main()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
