
Patrick B. answered 07/04/21
Math and computer tutor/teacher
using namespace std;
#include <iostream>
Go()
{
int * A;
int n;
cout << "How many integers ??? :>";
cin >> n;
A = new int[n];
for (int iLoop=0; iLoop<n; iLoop++)
{
cout << "Please input integer value # " << (iLoop+1) << " :>";
cin >> A[iLoop];
}
for (int iLoop=0; iLoop<n; iLoop++)
{
cout << " integer # " << A[iLoop] << endl;
}
delete(A);
}