#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; int main(){ int n; int big = 0; int max; int numc; cin >> n; //Dynamically allocate memory and save the address of that memory in the pointer int *array = new int[n]; //read in all elements into array for (int i = 0; i < n; i++){ cin >> array[i]; } max = array[0]; for (int j = 0; j < n; j++){ if (max