写一个二维数组类 Array2
摘要:#include #include using namespace std;class Array2{private: int m, n; int** p;public: Array2(int _m,int _n) { m = _m; n = _...
阅读全文
posted @ 2015-10-06 15:35
posted @ 2015-10-06 15:35
posted @ 2015-09-30 12:47