Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

A company hired N=10 workers who are paid hourly and you are given a data file that contains the last name of the employees, the

A company hired N=10 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. For instance, a sample data file may look like

smith 30 6.25 cooper 45 7.00 brown 40 8.00 hut 10 9.99

Write a C++ program to solve the problem

You are asked to write a program that computes each employees 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 hours, 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 following functions:

a function to read the data from the file into the arrays -- call it readFromFiletoArrays()

a function to determine the weekly pay of all the employees -- call it calcWeeklyPay()

a function to output the names of all the employees whose pay is greater than or equal to the average weekly pay and also print the average salary -- call it printAboveAverageEmployees()

a function to output each employees data (including the name, number of hours worked, hourly rate, and salary)-- call it printAllEmployees().

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_2

Step: 3

blur-text-image_3

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

SQL Database Programming

Authors: Chris Fehily

1st Edition

1937842312, 978-1937842314

More Books

Students also viewed these Databases questions

Question

What is the purpose of the Salary Structure Table?

Answered: 1 week ago

Question

What is the scope and use of a Job Family Table?

Answered: 1 week ago