Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ PROGRAMMING Write a program that calculates the weekly pay for a group of employees. Your program should do the following: 1. Declare the following

C++ PROGRAMMING

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. 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 CalculateTotal(double[], double[]): double DisplayInfo(string[], double[], double[], double[]): void

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

Database Design And Relational Theory Normal Forms And All That Jazz

Authors: Chris Date

1st Edition

1449328016, 978-1449328016

More Books

Students also viewed these Databases questions

Question

Did the decisions need to be made, or had they already been made?

Answered: 1 week ago

Question

When there was controversy, was it clear who had the final say?

Answered: 1 week ago