Question: Java 19/ Eclipse Lab 6 Write a program for Lab 06 that does: 1. Read the hourly rate from the user from the keyboard. You

Java 19/ Eclipse Lab 6 Write a program for Lab 06 that does: 1. Read the hourly rate from the user from the keyboard. You can use the variable double hourlyRate; 2. Perform the calculation to get the yearly salary. You can use the variable double yearlySalary; 3. Perform the calculation to get the monthly salary. You can use the variable double monthlySalary; 4. Print the information out to the user in a nice way. It should look something like this when your program is working Enter the employee's hourly wage: 18.75 For an hourly wage of $18.75 : Yearly salary: \$37500.00 Monthly Salary: \$3125.00 Tips: - If you want to use printf(), you can round the salary to two decimal points. But you don't have to. - If you prefer another format to print the information in, you can use that
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
