For this c++ write a code for Parallel Arrays First, you have to define several arrays in your main program:  employee names for each employee hourly pay rate for each employee total hours worked for each employee gross pay for each employee code format: // TODO: Add function prototypes for all the declared functions // TODO: Declare two functions to compute the highestPay and lowestPay// HINT: Each should return the index of the correct value in the grossPay array. /* TODO: Create a function called getEmployeeNamesArguments :Name array(first and last name)Maximum sizeReturn the number of names filled.*/ /* TODO: Create a function calledgetHourlyPayArguments :NameArray(filled in Step 1)HourlyPayArray(starts empty)NumberOfNamesFilled(from Step1)*/ int main(){// TODO: Declare an array of strings for the employeeNames able to hold a maximum of SIZE employees// TODO: Declare arrays of double hourlyPay and grossPay, each able to hold a maximum of SIZE employees // TODO: Declare a 2-D array of doubles for the hours. It should hold a maximum of SIZE employees, each having 7 days.// TODO: Read in the employee names and return the numberOfEmployees. // TODO: Call your function to read in the hourly pay for each of the employees. // TODO: Read in the daily hours for each employee. There will be 7 entries per week. // NOTE: This prints the headers with a set width for each field. Follow this format for the entriescout << setw(20) << "Employee Name" << setw(12) << " Hours" << setw(10) << "Gross Pay" << endl;-// TODO: For each employee, print: name, total hours and gross pay // TODO: Call the function that finds the highest gross pay and print the corresponding employee name and gross pay.// HINT: consider finding the Index of the value rather than returning the actual highest gross pay.// TODO: Call the function to find the lowest gross pay and print the corresponding employee name and gross pay. return 0;}

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 44SA
icon
Related questions
Question

For this c++ write a code for

Parallel Arrays

First, you have to define several arrays in your main program: 

  1. employee names for each employee
  2. hourly pay rate for each employee
  3. total hours worked for each employee
  4. gross pay for each employee

code format:

// TODO: Add function prototypes for all the declared functions

// TODO: Declare two functions to compute the highestPay and lowestPay
// HINT: Each should return the index of the correct value in the grossPay array.

/* TODO: Create a function called
getEmployeeNames
Arguments :
Name array(first and last name)
Maximum size
Return the number of names filled.
*/

/* TODO: Create a function called
getHourlyPay
Arguments :
NameArray(filled in Step 1)
HourlyPayArray(starts empty)
NumberOfNamesFilled(from Step1)
*/


int main()
{
// TODO: Declare an array of strings for the employeeNames able to hold a maximum of SIZE employees

// TODO: Declare arrays of double hourlyPay and grossPay, each able to hold a maximum of SIZE employees

// TODO: Declare a 2-D array of doubles for the hours. It should hold a maximum of SIZE employees, each having 7 days.

// TODO: Read in the employee names and return the numberOfEmployees.

// TODO: Call your function to read in the hourly pay for each of the employees.

// TODO: Read in the daily hours for each employee. There will be 7 entries per week.

// NOTE: This prints the headers with a set width for each field. Follow this format for the entries
cout << setw(20) << "Employee Name" << setw(12) << " Hours" << setw(10) << "Gross Pay" << endl;
-
// TODO: For each employee, print: name, total hours and gross pay

// TODO: Call the function that finds the highest gross pay and print the corresponding employee name and gross pay.
// HINT: consider finding the Index of the value rather than returning the actual highest gross pay.

// TODO: Call the function to find the lowest gross pay and print the corresponding employee name and gross pay.

return 0;
}

 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 7 steps with 6 images

Blurred answer
Knowledge Booster
Array
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