// 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: "; for (int i=0; i> hours[i]; // display the hours worked by each employee cout << "The hours you entered are:\n"; for (int i=0; i