017 二维数组类

#include <iostream> #include <cstring> using namespace std; class Array2 { public: int x, y; int * p; Array2() {} Array2(int xx, int yy) :x(xx), y(yy)
posted @ 2022-02-20 17:23  icefield817  阅读(107)  评论(0编辑  收藏  举报