// This program asks for the number of hours worked // by six employees. It stores the values in an array. #include using namespace std; int main() { const int NUM_EMPLOYEES = 6; int hours[NUM_EMPLOYEES]; // Get the hours worked by each employee. cout << "Enter the hours worked by " << NUM_EMPLOYEES << " employees: "; cin >> hours[0]; cin >> hours[1]; cin >> hours[2]; cin >> hours[3]; cin >> hours[4]; cin >> hours[5]; // Display the values in the array. cout << "The hours you entered are:"; for (int i=0; i