#include #include using namespace std; int main() { int inputx; cout << "How many integers do you have? (Max 20)\n"; cin >> inputx; int num_array[inputx]; for(int x = 0; x < inputx; x++) { cout << "Enter element for subscript " << x << endl; cin >> num_array[x]; } cout << "Here are all of those numbers\n"; for (int x = 0; x< inputx; x++) cout << num_array[x] << endl; return 0; }