CJCoding With Joseph

Overtime Pay

Read a double hours (hours worked in a week) and a double rate (dollars per hour). Hours up to 40 are paid at the normal rate; 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 input 45 10, the pay is 40*10 + 5*15 = 475, so the program prints:

475.00

Expected Output:

475.00
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
45 10
This input is automatically fed to your program's stdin
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.