Question
C++ PROGRAMMING Parallel Arrays Write a program that calculates the weekly pay for a group of employees. Your program should do the following: 1. Declare
C++ PROGRAMMING
Parallel Arrays
Write a program that calculates the weekly pay for a group of employees. Your program should do the following: 1. Declare the following 4 parallel arrays, size 4. Names (String) hoursWorked (double) hourlyPay (double) WeeklyEarnings (double)
2. Use a for loop to prompt for the names, hours worked and hourly pay for the 4 employees. Example Output: Please enter name #1: John Please enter the number of hours worked: 10 Please enter the hourly pay rate: 12.50 Please enter name #2: Jane Please enter the number of hours worked: 20 Please enter the hourly pay rate: 15.50
3. Use a for loop to calculate the total earnings for each employee and store the results in the WeeklyEarnings array.
4.Use a for loop to display the results as follows: Name Hours Worked Hourly Pay Weekly Earnings -------------------------------------------------------- John 10 $12.50 $125.00 Jane 20 $15.50 $310.00 Mike 15 $10.00 $300.00 Carol 30 $13.00 $390.00
5. Extra Credit Declare a global constant to represent the size of the arrays. Use functions to complete steps 2,3 and 4. Use the following function prototypes: GetInfo(string[], double[], double[]): void CalculateWeeklyEarnings(double[], double[], double[]): void DisplayInfo(string[], double[], double[], double[]): void
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started