#include<bits/stdc++.h> using namespace std; class Array{ private: int n;//数组大小 int *a;//数组 public: // write your code here...... Array(int n,int* arr){ this->n=n; this->a=arr; } ~Array(){ delete []a; } void show(){ for (int i=0;i<n;i++) cout<&...