#include using namespace std; int main() { int i; int number[10]; i = 0; while (i < 10) { number[i] = 2 * i + 1; i = i + 1; } cout << "the array elements are " << endl; i = 0; while (i < 10) { cout << number[i] << ", "; i = i + 1; } cout << endl << endl; return 0; }