Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Text file: Your program needs to read in the employees daily hours, how many hours he or she has worked for the week, calculate the
Text file:
Your program needs to read in the employees daily hours, how many hours he or she has worked for the week, calculate the gross pay, and calculate the net pay. Each employee's pay rate is 7.50 and each employee pays the federal tax rate of 10%. For each employee, print the pay rate, total hours worked, gross pay and net pay. Requirements: name the program TwoDProgram, name the data file twoDdata.txt, and name the output file twoDpayroll.txt Make sure to adhere to the requirements, submit your program, and verify your results. Sample of twoDdata.txt: employees The first item in the file specifies how many Sample of output: WNP Employee Rate 7.50 7.50 7.50 7.50 Total Hours Worked 17 19 20 19 Gross Pay Net Pay 127.50 114.75 142.50 128.25 150.00 135.00 142.50 128.25 Declare a Scanner to read from file, payrollDdata.txt Read in the row" = the number of employees Declare the 2D array Loop to read in data into a 2D array (#1, page 5) Close Scanner Declare a printWriter to write to payrollOutput.txt file Print titles Loop to: (#4 (modified), page 6) Sum the row to get totalHoursWorked Calculate the gross pay Calculate the tax Calculate the net pay Print format the: row index number, rate, totalHoursWorked, gross pay, net pay Close the printWriter + 5 + 6 H + N 9
Step by Step Solution
There are 3 Steps involved in it
Step: 1
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