A company hired 10 temporary workers who are paid hourly and you are given a data file that contains the last name of the employees, the number of hours each employee worked in a week, and the hourly pay rate of each employee. You are asked to write a program that computes each employee’s weekly pay and the average salary of all employees. The program then outputs the weekly pay of each employee, the average weekly pay, and the names of all the employees whose pay is greater than or equal to the average pay. If the number of hours worked in a week is more than 40, then the pay rate for the hours over 40 is 1.5 times the regular hourly rate. Use two parallel arrays: a one-dimensional array to store the names of all the employees (Name) a two-dimensional array of 10 rows and 3 columns to store the number of hours an employee worked in a week (Hrs Worked), the hourly pay rate (Pay Rate), and the weekly pay (Salary). Your program must contain at least the following functions: a function to read the data from the file into the arrays. a function to determine the weekly pay. a function to output each employee’s data. a function to output the average salary of all employees a function to output the names of all the employees whose pay is greater than or equal to the average weekly pay A sample output is:   Name    Hrs Worked  Pay Rate    Salary Johnson      60.00     12.50    875.00 Aniston       65.00     13.25   1026.88 Cooper        50.00     14.50    797.50 Gupta          70.00     14.75   1253.75 Blair             55.00     10.50     656.25 Clark            40.00     18.75     750.00 Kennedy      45.00     20.50     973.75 Bronson       60.00     20.00   1400.00 Sunny          65.00     18.75    1453.12 Smith           30.00       9.75      292.50 Average Salary: $947.88

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter3: Input/output
Section: Chapter Questions
Problem 4PE: 4. During each summer, John and Jessica grow vegetables in their backyard and buy seeds and...
icon
Related questions
Question

C++

A company hired 10 temporary workers who are paid hourly and you are given a data file that contains the last name of the employees, the number of hours each employee worked in a week, and the hourly pay rate of each employee. You are asked to write a program that computes each employee’s weekly pay and the average salary of all employees. The program then outputs the weekly pay of each employee, the average weekly pay, and the names of all the employees whose pay is greater than or equal to the average pay. If the number of hours worked in a week is more than 40, then the pay rate for the hours over 40 is 1.5 times the regular hourly rate.

Use two parallel arrays:

  • a one-dimensional array to store the names of all the employees (Name)
  • a two-dimensional array of 10 rows and 3 columns to store the number of hours an employee worked in a week (Hrs Worked), the hourly pay rate (Pay Rate), and the weekly pay (Salary).

Your program must contain at least the following functions:

  • a function to read the data from the file into the arrays.
  • a function to determine the weekly pay.
  • a function to output each employee’s data.
  • a function to output the average salary of all employees
  • a function to output the names of all the employees whose pay is greater than or equal to the average weekly pay

A sample output is:

 

Name    Hrs Worked  Pay Rate    Salary

Johnson      60.00     12.50    875.00

Aniston       65.00     13.25   1026.88

Cooper        50.00     14.50    797.50

Gupta          70.00     14.75   1253.75

Blair             55.00     10.50     656.25

Clark            40.00     18.75     750.00

Kennedy      45.00     20.50     973.75

Bronson       60.00     20.00   1400.00

Sunny          65.00     18.75    1453.12

Smith           30.00       9.75      292.50


Average Salary: $947.88


Employees whose salaries are greater than or equal to the average salary.Aniston Gupta Kennedy Bronson Sunny

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 3 images

Blurred answer
Knowledge Booster
User Defined DataType
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
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr