Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In Java Code Adding Arrays and File Input/Output to our Part B menu-driven program that will give the user the following choices: 1) Wage calculator,

In Java Code

Adding Arrays and File Input/Output to our Part B menu-driven program that will give the user the following choices: 1) Wage calculator, 2) Tip calculator, 3) Wages Report, 4) Tips Report, and 5) Exit.

Modification: Your program will now be able to store multiple inputs for calculating wages and tips. To

do so, A.

B.

C.

D. E.

F.

G.

add the following:

For the password access: create an array to store passwords (no more than 5 for testing). When the user attempts to login, if there password is not in the array tell them and then allow them to store a password and login again. For the wage calculator: after gathering the requested information and calculating the pay, store the individuals information to a file (with labels) in a single line. You cannot loop within the task; you must collect one entry and return to the menu. This information includes the previous information from Part B and any new requirements listed below. [This will require a little thought to work with modification C below]

For the tip calculator: store each tip amount that is calculated in an array (name it tips) and store each total dinner bill (with tip) in a separate array (name it dinners). Add a new menu item that will show a report of all individuals whose wages you calculated. Add a menu item that will provide the total tips collected (in dollars and cents) and the total dollar amount of dinners sold (in dollars and cents).

For the exit option, ask the user if they are sure they want to really exit or login using a different pin number. If they do not really want to exit, return to the menu and continue per usual. If they want to exit and login using a different pin number, allow them to do so and continue per usual. If they want to continue, display the number of wages calculated and the number of dinners sold. Once you show these messages, then display a Thank you message for using the program.

All boundaries should be tested. This means a user should not be able to enter negative numbers for any input (input validation) or values outside of the bounds of requirements [See changes in sections below]. **Remember to follow minimum requirements from Part B and make modifications accordingly [this includes calling methods from the menu and other methods]

Wage Calculator Requirements: For the wage calculator, prompt for the users name and salary of an employee. Here the salary will denote an hourly wage, such as $9.25. Then ask how many hours the employee worked in the past week. Be sure to accept fractional hours. The user can ONLY enter values between 0 (zero) and a maximum of 40 hours for regular pay. If the user has worked more than 40 hours, ask for the number of overtime hours. Compute the pay. Any overtime work (over 40 hours per week) is paid at 150 percent of the regular wage (1.5 the overtime pay). Print the users name,

hours worked, overtime hours worked (do not show overtime, if there is none), regular hours pay, overtime hours pay (do not show overtime pay if there is none), and total pay. [Change]

Tip Calculator Requirements: For the tip calculator, the tip is calculated based on the diners satisfaction level. The main function from part B also prints the diners final total with the tip included.

Exit Requirements: The exit choice will display a statement that the program will end and thank the user for using the program. [Change]

Wages Report Requirements: [Modification] Read the individuals information from the file and display for the user. The output should be formatted and readable (hint: this should be done when storing the information). [You will not be able to use the same Writer class, do a little research]

Tip and Diners Report Requirement: [Modification] Calculate the total tips from the tips arrays and display for the user (in dollars and cents). Calculate the total dinners sold (remember this includes tip) and display for the user (in dollars and cents).

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Management System MCQs Multiple Choice Questions And Answers

Authors: Arshad Iqbal

1st Edition

1073328554, 978-1073328550

More Books

Students also viewed these Databases questions