# include # include using namespace std; int main ( ) // // READ_ARRAY allows a user to input the 5 entries of an array interactively. // { int i; int list[5]; cout << "Enter the 5 entries of the array LIST: "; for ( i = 0; i < 5; i++ ) { cin >> list[i]; } cout << "\n"; cout << "Here is the array as input by the user:\n"; cout << "\n"; for ( i = 0; i < 5; i++ ) { cout << " " << i << ": " << list[i] << "\n"; } return 0; }