Question: Below is the detailed pseudocode from the example, but without the calculation part. You need to fill in lines that tell in English what the

Below is the detailed pseudocode from the example, but without the calculation part. You need to fill in lines that tell in English what the calculation part of Pay.java is doing.

Display How many hours did you work?. Input hours.

Display How much are you paid per hour?. Input rate.

Display the value in the pay variable.

import java.util.Scanner; // Needed for the Scanner class /** This program calculates the user's gross pay. */ public class Pay { public static void main(String[] args) { // Create a Scanner object to read from the keyboard. Scanner keyboard = new Scanner(System.in); // Identifier declarations double hours; // Number of hours worked double rate; // Hourly pay rate double pay; // Gross pay // Display prompts and get input. System.out.print("How many hours did you work? "); hours = keyboard.nextDouble(); System.out.print("How much are you paid per hour? "); rate = keyboard.nextDouble(); // Perform the calculations. if(hours <= 40) pay = hours * rate; else pay = (hours - 40) * (1.5 * rate) + 40 * rate; // Display results. System.out.println("You earned $" + pay); } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!