logo CodeStepByStep logo

printPay

Language/Type: Java parameters

Write a method named printPay that computes and prints the amount of money an employee should earn. Your method accepts two parameters: a real number for the employee's hourly salary, and an integer for the number of hours the employee worked. Every hour over 8 is paid at 1.5x the normal salary. For example, the call of printPay(10.00, 11); should print the following output:

Hours worked: 11
Pay earned: $125.00

You may assume that the value passed for the salary and hours are non-negative. Use the printf method to format real numbers properly.

Method: Write a Java method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.