Respuesta :
Answer:
The structure of the following program:
int employees;
int a,b;
int wage=0;
int hours=0;
total=0;
cin >> employees;
for (a=1; a<=employees; a++){
cin >> wage;
for (b=1; b<=5; b++){
cin >> hours;
total += hours * wage;
}
}
Explanation:
Firstly, we set non-negative integer type variables "a" and "b", than set two more integer type variables "wage" and "hours", after that gets input in the variable "employees", than set for loop which is starts from 1 and ends according to the length of the employees and gets input in the variable wages and then repeat this process with hour, after all we sum those value in total.
Answer:
The structure of the following program
int numberOfTimesheets;
int centsPerHour = 0;
int hoursWorked;
total = 0;
numberOfTimesheets = stdin.nextInt();
for(int i = 1; i <= numberOfTimesheets; i++)
{
hoursWorked = 0;
centsPerHour = stdin.nextInt();
for (int ii = 1; ii <= 5; ii++)
{
hoursWorked = hoursWorked + stdin.nextInt();
}
total = total + (hoursWorked * centsPerHour);
}
Explanation: