Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hi I'm trying to find out where the file name goes, how it could be implemented in my code to get the data I need

Hi I'm trying to find out where the file name goes, how it could be implemented in my code to get the data I need so I can get a good grade thanks in advance, I'll rate highly please show code working thanks.

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 employees 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 employees 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
... ... ... ...
Average Salary: $947.88
Salary Greater than Avg:
Aniston Gupta Kennedy ...

#include #include #include #include using namespace std; // function prototype void readFileData(string name[], double arr[][3]); void calculatePay(double arr[][3]); void displayAllEmp(string name[], double arr[][3]); double averageSalary(double arr[][3]); void dispalyAboveAvg(string name[], double arr[][3]); int main(){ string name[10]; double arr[10][3]; // arr[0] -number of hours, arr[1] - pay rate, arr[2] - weekly pay readFileData(name, arr); calculatePay(arr); displayAllEmp(name, arr); dispalyAboveAvg(name, arr); return 0; } // function to read data from file void readFileData(string name[], double arr[][3]){ int i = 0; ifstream input; char fileName[10]; cout<<"Enter file name: "; cin>>fileName; input.open(fileName); while(i<10){ input>>name[i]>>arr[i][0]>>arr[i][1]; i++; } } void calculatePay(double arr[10][3]){ for(int i=0; i<10; i++){ int numberOfHours = arr[i][0]; if(numberOfHours > 40){ arr[i][2] = 40*arr[i][1] + (numberOfHours-40)*arr[i][1]*1.5; } else{ arr[i][2] = numberOfHours*arr[i][1]; } } } void displayAllEmp(string name[], double arr[][3]){ cout<<"Name"<<" "<<"Hrs Worked"<<" "<<"Pay Rate"<<" "<<"Salary"<= average) cout<

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

Data Management Databases And Organizations

Authors: Richard T. Watson

6th Edition

1943153035, 978-1943153039

More Books

Students also viewed these Databases questions

Question

2. Show that E[Y] = 0 P(Y > y) dy - 0 P(Y y) dy = 0 xf Y (x) dx

Answered: 1 week ago