10 2015 档案

写一个二维数组类 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 张茂晨 阅读(712) 评论(0) 推荐(0)