#include using namespace std; int main() { int i; int number[10]={36, 81, 45, 17, 69, 3, 23, 92, 70, 54}; i = 0; while (i < 10) { cout << number[i] << ", "; i = i + 1; } cout << endl << endl; while (1) { cout << "Array index = "; cin >> i; if ((i < 0) || (i >= 10)) cout << "Out of range" << endl << endl; else cout << "Content = " << number[i] << endl << endl; } return 0; }