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 employ- ee’s weekly pay and the average salary of all the workers. 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, and a two-dimensional array of 10 rows and 3 columns to store the number of hours an employee worked in a week, the hourly pay rate, and the weekly pay. Your program must contain at least the follow- ing functions—a function to read the data from the file into the arrays, a function to determine the weekly pay, a function to output the names of all the employees whose pay is greater than or equal to the average weekly pay, and a function to output each employee’s data.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter4: Selection Structures
Section4.3: Nested If Statements
Problem 7E
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 employ-

ee’s weekly pay and the average salary of all the workers. 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, and a two-dimensional array of 10 rows and 3 columns to

store the number of hours an employee worked in a week, the hourly pay

rate, and the weekly pay. Your program must contain at least the follow-

ing functions—a function to read the data from the file into the arrays,

a function to determine the weekly pay, a function to output the names

of all the employees whose pay is greater than or equal to the average

weekly pay, and a function to output each employee’s data.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Function Arguments
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++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr