Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a menu-driven program that will give the user the three choices: 1) Wage calculator, 2) Coupon Calculator, and 3) Exit. Class Name: Parta
Write a menu-driven program that will give the user the three choices: 1) Wage calculator, 2) Coupon Calculator, and 3) Exit. Class Name: Parta Wage Calculator: For the wage calculator, prompt for the name and hourly pay rate of an employee. Here the hourly pay rate is a floating-point number, such as $9.25. Then ask how many hours the employee worked in the past week. Be sure to accept fractional hours. Compute the pay. Any overtime work (over 40 hours per week) is paid at 150 percent of the regular wage (1.5 the hourly pay rate). Print the employee's name, regular hours worked, regular hours pay, overtime hours worked (do not show overtime hours, if there are none), overtime hours pay (do not show overtime pay if there is none), and total pay. [Do not prompt for overtime hours] Coupon Calculator: For the coupon calculator, the total coupon amount is calculated based on the type of items purchased. Ask for the shopper's total purchase amount. Then show the following options to determine coupon amount: 1=Auto Parts, 2=Fragrances, 3=Accessories. If the choice is 1, calculate a 10 percent coupon. If the choice is 2, calculate a 15 percent coupon. If the choice is 3, calculate a 20 percent coupon. Print the choice and coupon amount in dollars and cents. [Format: "Your coupon is $10.00 (Auto Parts) "] Exit: The exit choice will display a statement that the program will end and thank the user for using the program. [They must choose to exit the menu, not default out it is a menu option] Your program should be complete and with correct convention (ie. variable naming and declaration/NO on-the-fly declarations) and commenting (correct header with well-formed pseudocode). To obtain 50 of 100 points, your program must compile and begin execution. You will obtain 30 points if your program runs correctly. You will obtain 20 points for all other convention and commenting (this includes file and class naming convention). All output should be properly formatted and user friendly. Your program should NOT loop on the menu (we will execute the program for each option). Once complete, you will submit your java file using the ProjectPartA link in Moodle. See the next page for an example program execution. Example Program Execution Example output Calculator Menu Hello Ashley Long 1) Wage Calculator 2) Coupon Calculator 3) Exit Please enter your choice: 1 Your regular hours worked are 40. Your overtime ho urs worked are 4. Your regular pay: $3,048.00 Your overtime pay: $457.20 Your total pay: $3,505.20 Please enter your name: Ashley Long Please enter your hourly wage: 76.20 Please enter your hours worked: 44 Thank you for using the Wage Calculator Ashley! Have a great day! Calculator Menu 1) Wage Calculator 2) Coupon Calculator 3) Exit Please enter your choice: 2 Please enter your purchase amount $: 100.00 Please enter purchase type (1=Auto Parts, 2-Fragrances, 3=Accessories): 1 Your coupon amount is $10.00 (Auto Parts). Thank you for using the Coupon Calculator! Have a great day! Calculator Menu 1) Wage Calculator 2) Coupon Calculator 3) Exit This program will now end. Please enter your choice: 3 Thank you for using our program! Write a menu-driven program that will give the user the three choices: 1) Wage calculator, 2) Coupon Calculator, and 3) Exit. Class Name: Parta Wage Calculator: For the wage calculator, prompt for the name and hourly pay rate of an employee. Here the hourly pay rate is a floating-point number, such as $9.25. Then ask how many hours the employee worked in the past week. Be sure to accept fractional hours. Compute the pay. Any overtime work (over 40 hours per week) is paid at 150 percent of the regular wage (1.5 the hourly pay rate). Print the employee's name, regular hours worked, regular hours pay, overtime hours worked (do not show overtime hours, if there are none), overtime hours pay (do not show overtime pay if there is none), and total pay. [Do not prompt for overtime hours] Coupon Calculator: For the coupon calculator, the total coupon amount is calculated based on the type of items purchased. Ask for the shopper's total purchase amount. Then show the following options to determine coupon amount: 1=Auto Parts, 2=Fragrances, 3=Accessories. If the choice is 1, calculate a 10 percent coupon. If the choice is 2, calculate a 15 percent coupon. If the choice is 3, calculate a 20 percent coupon. Print the choice and coupon amount in dollars and cents. [Format: "Your coupon is $10.00 (Auto Parts) "] Exit: The exit choice will display a statement that the program will end and thank the user for using the program. [They must choose to exit the menu, not default out it is a menu option] Your program should be complete and with correct convention (ie. variable naming and declaration/NO on-the-fly declarations) and commenting (correct header with well-formed pseudocode). To obtain 50 of 100 points, your program must compile and begin execution. You will obtain 30 points if your program runs correctly. You will obtain 20 points for all other convention and commenting (this includes file and class naming convention). All output should be properly formatted and user friendly. Your program should NOT loop on the menu (we will execute the program for each option). Once complete, you will submit your java file using the ProjectPartA link in Moodle. See the next page for an example program execution. Example Program Execution Example output Calculator Menu Hello Ashley Long 1) Wage Calculator 2) Coupon Calculator 3) Exit Please enter your choice: 1 Your regular hours worked are 40. Your overtime ho urs worked are 4. Your regular pay: $3,048.00 Your overtime pay: $457.20 Your total pay: $3,505.20 Please enter your name: Ashley Long Please enter your hourly wage: 76.20 Please enter your hours worked: 44 Thank you for using the Wage Calculator Ashley! Have a great day! Calculator Menu 1) Wage Calculator 2) Coupon Calculator 3) Exit Please enter your choice: 2 Please enter your purchase amount $: 100.00 Please enter purchase type (1=Auto Parts, 2-Fragrances, 3=Accessories): 1 Your coupon amount is $10.00 (Auto Parts). Thank you for using the Coupon Calculator! Have a great day! Calculator Menu 1) Wage Calculator 2) Coupon Calculator 3) Exit This program will now end. Please enter your choice: 3 Thank you for using our program! Write a menu-driven program that will give the user the three choices: 1) Wage calculator, 2) Coupon Calculator, and 3) Exit. Class Name: Parta Wage Calculator: For the wage calculator, prompt for the name and hourly pay rate of an employee. Here the hourly pay rate is a floating-point number, such as $9.25. Then ask how many hours the employee worked in the past week. Be sure to accept fractional hours. Compute the pay. Any overtime work (over 40 hours per week) is paid at 150 percent of the regular wage (1.5 the hourly pay rate). Print the employee's name, regular hours worked, regular hours pay, overtime hours worked (do not show overtime hours, if there are none), overtime hours pay (do not show overtime pay if there is none), and total pay. [Do not prompt for overtime hours] Coupon Calculator: For the coupon calculator, the total coupon amount is calculated based on the type of items purchased. Ask for the shopper's total purchase amount. Then show the following options to determine coupon amount: 1=Auto Parts, 2=Fragrances, 3=Accessories. If the choice is 1, calculate a 10 percent coupon. If the choice is 2, calculate a 15 percent coupon. If the choice is 3, calculate a 20 percent coupon. Print the choice and coupon amount in dollars and cents. [Format: "Your coupon is $10.00 (Auto Parts) "] Exit: The exit choice will display a statement that the program will end and thank the user for using the program. [They must choose to exit the menu, not default out it is a menu option] Your program should be complete and with correct convention (ie. variable naming and declaration/NO on-the-fly declarations) and commenting (correct header with well-formed pseudocode). To obtain 50 of 100 points, your program must compile and begin execution. You will obtain 30 points if your program runs correctly. You will obtain 20 points for all other convention and commenting (this includes file and class naming convention). All output should be properly formatted and user friendly. Your program should NOT loop on the menu (we will execute the program for each option). Once complete, you will submit your java file using the ProjectPartA link in Moodle. See the next page for an example program execution. Example Program Execution Example output Calculator Menu Hello Ashley Long 1) Wage Calculator 2) Coupon Calculator 3) Exit Please enter your choice: 1 Your regular hours worked are 40. Your overtime ho urs worked are 4. Your regular pay: $3,048.00 Your overtime pay: $457.20 Your total pay: $3,505.20 Please enter your name: Ashley Long Please enter your hourly wage: 76.20 Please enter your hours worked: 44 Thank you for using the Wage Calculator Ashley! Have a great day! Calculator Menu 1) Wage Calculator 2) Coupon Calculator 3) Exit Please enter your choice: 2 Please enter your purchase amount $: 100.00 Please enter purchase type (1=Auto Parts, 2-Fragrances, 3=Accessories): 1 Your coupon amount is $10.00 (Auto Parts). Thank you for using the Coupon Calculator! Have a great day! Calculator Menu 1) Wage Calculator 2) Coupon Calculator 3) Exit This program will now end. Please enter your choice: 3 Thank you for using our program!
Step by Step Solution
★★★★★
3.45 Rating (158 Votes )
There are 3 Steps involved in it
Step: 1
import javautilScanner public class JamarcusSmithProjectPartB public static Scanner scanner new S...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started