摘要: task1 #include <iostream> using std::cout; using std::endl; // 类A的定义 class A { public: A(int x0, int y0); void display() const; private: int x, y; }; 阅读全文
posted @ 2024-11-24 21:05 AGHAG 阅读(3) 评论(0) 推荐(0) 编辑