Assume the input data is structured as follows: first there is a non-negative in
ID: 3639631 • Letter: A
Question
Assume the input data is structured as follows: first there is a non-negative integer specifying the number of employee timesheets to be read in. This is followed by data for each of the employees. The first number for each employee is an integer that specifies their pay per hour in cents. Following this are 5 integers, the number of hours they worked on each of the days of the workweek. Given this data, and given that an int variable total has been declared, write a loop and any necessary code that reads the data and stores the total payroll of all employees in total . Note that you will have to add up the numbers worked by each employee and multiply that by that particular employee's pay rate to get the employee's pay for the week-- and sum those values into total .
Explanation / Answer
#include #include #include #include using namespace std; int numberOfEmployees;//to store number of employes double payPerHour;//to store hourly pay int hoursWorked;//to store worked hours of week double total=0;//to store total of all employees //prompting for input number of employees coutnumberOfEmployees; //validating number of employees while(numberOfEmployeesRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.