Create the AcmePay program for Acme Parts, which runs a small factory and employs workers who are paid one of three hourly rates depending on their shift: first shift, $17 per hour, second shift, $18.50 per hour, third shift, $22 per hour. Each factory worker might work any number of hours per week and any hours greater than 40 are paid at one and one-half times the usual rate. In addition, second-shift and third-shift workers can elect to participate in the retirement plan, for which 3% percent of the worker’s gross pay is deducted from the paychecks. Write the AcmePay program that prompts the user for hours worked and the shift number; if the shift number is 2 or 3, prompt the user to enter the worker’s choice to participate in the retirement plan (1 for "yes", 2 for "no"). Display (1) the hours worked, (2) the shift, (3) the hourly pay rate, (4) the regular pay, (5) overtime pay, (6) the total of regular and overtime pay, (7) the retirement deduction, if any, and (8) the net pay. An example of the program is shown below: Please enter shift - 1, 2, or 3 >> 3 Please enter hours worked (can be a fraction) >> 55 Do you want to participate in the retirement plan? Enter 1 for Yes and 2 for No >> 1 Hours worked is 55.0 Shift: 3 Hourly pay rate is 22.0 Regular pay is 880.0 Overtime pay is 495.0 Retirement deduction is 41.25 Net pay is..............1333.75 Task 01: Create the AcmePay class. Task 02: The AcmePay program displays the correct pay information for a first-shift worker. Task 03: The AcmePay program displays the correct pay information for a second-shift worker. Task 04: The AcmePay program displays the correct pay information for a third-shift worker.

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter14: Introduction To Swing Components
Section: Chapter Questions
Problem 10PE
icon
Related questions
Question

 

Create the AcmePay program for Acme Parts, which runs a small factory and employs workers who are paid one of three hourly rates depending on their shift:

  1. first shift, $17 per hour,
  2. second shift, $18.50 per hour,
  3. third shift, $22 per hour.

Each factory worker might work any number of hours per week and any hours greater than 40 are paid at one and one-half times the usual rate. In addition, second-shift and third-shift workers can elect to participate in the retirement plan, for which 3% percent of the worker’s gross pay is deducted from the paychecks. Write the AcmePay program that prompts the user for hours worked and the shift number; if the shift number is 2 or 3, prompt the user to enter the worker’s choice to participate in the retirement plan (1 for "yes", 2 for "no"). Display (1) the hours worked, (2) the shift, (3) the hourly pay rate, (4) the regular pay, (5) overtime pay, (6) the total of regular and overtime pay, (7) the retirement deduction, if any, and (8) the net pay.

An example of the program is shown below:

Please enter shift - 1, 2, or 3 >> 3

Please enter hours worked (can be a fraction) >> 55

Do you want to participate in the retirement plan?

Enter 1 for Yes and 2 for No >> 1

Hours worked is 55.0

Shift: 3

Hourly pay rate is 22.0

Regular pay is 880.0

Overtime pay is 495.0

Retirement deduction is 41.25

Net pay is..............1333.75

Task 01: Create the AcmePay class.

Task 02: The AcmePay program displays the correct pay information for a first-shift worker.

Task 03: The AcmePay program displays the correct pay information for a second-shift worker.

Task 04: The AcmePay program displays the correct pay information for a third-shift worker.

 

| ||| ☺ a 2 40
4
ge
5033
C
Unit 5: Making Decisions
CENGAGE COMPANION:COMMANDS
Open Companion Tab
Refresh Companion Tab
Bundle Current Workspace
https://literate-sniffle-x5wx9wg5x7w4fr5r.github.dev/?folder=/workspaces/9780357673423_java-programming-10e-5...
J AcmePay.java X
J AcmePay.java >
bb double net = LULD = recremenweduction;
67
68 System.out.println("Hours worked : "+hoursworked);
System.out.println("Shift is : "+shift);
System.out.println("Hourly pay rate is : "+payRate);
69
70
MindTap - Cengage Learning X
}
Companion - student [Codespace X
><Codespaces: literate sniffle Ⓡ0A01 Java: Lightweight Mode
71 System.out.println("Regular pay rate is : "+regularPay);
72 System.out.println("Overtime pay rate is : "+overtimePay);
73 System.out.println("Total of pay : "+total);
74 System.out.println("Retirement deduction : "+retirement Deduction);
75 System.out.println("Net pay : "+net);
76
77
78
79
80
81
82
83
student [Codespaces: literate sniffle]
aparca.com
BR
BEN
BLUSES
SP
BENUT
T
S
Bilte
S
-
BEININGAR
Success Confirmation of Question X +
а
Q All
Welcome
= Companion X
1. first shift, $17 per hour,
2. second shift, $18.50 per hour,
3. third shift, $22 per hour.
{} (1)
Create the AcmePay program for Acme Parts, which runs a small factory and
employs workers who are paid one of three hourly rates depending on their
shift:
·1+
À
..1333.75
Each factory worker might work any number of hours per week and any
hours greater than 40 are paid at one and one-half times the usual rate. In
addition, second-shift and third-shift workers can elect to participate in the
retirement plan, for which 3% percent of the worker's gross pay is deducted
from the paychecks. Write the AcmePay program that prompts the user for
hours worked and the shift number; if the shift number is 2 or 3, prompt
the user to enter the worker's choice to participate in the retirement plan (1
for "yes", 2 for "no"). Display (1) the hours worked, (2) the shift, (3) the hourly
pay rate, (4) the regular pay, (5) overtime pay, (6) the total of regular and
overtime pay, (7) the retirement deduction, if any, and (8) the net pay.
An example of the program is shown below:
Please enter shift - 1, 2, or 3 >> 3
Please enter hours worked (can be a fraction) >> 55
Do you want to participate in the retirement plan?
Enter 1 for Yes and 2 for No >> 1
55.0
3
Hours worked is
Shift:
Hourly pay rate is 22.0
Regular pay is
Overtime pay is
880.0
495.0
Retirement deduction is 41.25
Net pay is.....
ń
■ 日 08
B
4
✪
C
Layout: US O
Transcribed Image Text:| ||| ☺ a 2 40 4 ge 5033 C Unit 5: Making Decisions CENGAGE COMPANION:COMMANDS Open Companion Tab Refresh Companion Tab Bundle Current Workspace https://literate-sniffle-x5wx9wg5x7w4fr5r.github.dev/?folder=/workspaces/9780357673423_java-programming-10e-5... J AcmePay.java X J AcmePay.java > bb double net = LULD = recremenweduction; 67 68 System.out.println("Hours worked : "+hoursworked); System.out.println("Shift is : "+shift); System.out.println("Hourly pay rate is : "+payRate); 69 70 MindTap - Cengage Learning X } Companion - student [Codespace X ><Codespaces: literate sniffle Ⓡ0A01 Java: Lightweight Mode 71 System.out.println("Regular pay rate is : "+regularPay); 72 System.out.println("Overtime pay rate is : "+overtimePay); 73 System.out.println("Total of pay : "+total); 74 System.out.println("Retirement deduction : "+retirement Deduction); 75 System.out.println("Net pay : "+net); 76 77 78 79 80 81 82 83 student [Codespaces: literate sniffle] aparca.com BR BEN BLUSES SP BENUT T S Bilte S - BEININGAR Success Confirmation of Question X + а Q All Welcome = Companion X 1. first shift, $17 per hour, 2. second shift, $18.50 per hour, 3. third shift, $22 per hour. {} (1) Create the AcmePay program for Acme Parts, which runs a small factory and employs workers who are paid one of three hourly rates depending on their shift: ·1+ À ..1333.75 Each factory worker might work any number of hours per week and any hours greater than 40 are paid at one and one-half times the usual rate. In addition, second-shift and third-shift workers can elect to participate in the retirement plan, for which 3% percent of the worker's gross pay is deducted from the paychecks. Write the AcmePay program that prompts the user for hours worked and the shift number; if the shift number is 2 or 3, prompt the user to enter the worker's choice to participate in the retirement plan (1 for "yes", 2 for "no"). Display (1) the hours worked, (2) the shift, (3) the hourly pay rate, (4) the regular pay, (5) overtime pay, (6) the total of regular and overtime pay, (7) the retirement deduction, if any, and (8) the net pay. An example of the program is shown below: Please enter shift - 1, 2, or 3 >> 3 Please enter hours worked (can be a fraction) >> 55 Do you want to participate in the retirement plan? Enter 1 for Yes and 2 for No >> 1 55.0 3 Hours worked is Shift: Hourly pay rate is 22.0 Regular pay is Overtime pay is 880.0 495.0 Retirement deduction is 41.25 Net pay is..... ń ■ 日 08 B 4 ✪ C Layout: US O
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT