โ Back to If Statements
Question 392
Overtime Pay
Overtime Pay
Read adoublehours(hours worked in a week) and adoublerate(dollars per hour). Hours up to 40 are paid at the normalrate; any hours beyond 40 are paid at 1.5 times the rate. Compute the total pay and print it with exactly 2 decimal places, ending with a newline. For example, given the input45 10, the pay is40*10 + 5*15 = 475, so the program prints: 475.00
Expected Output:
475.00
Topics:
If Statements
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.