摘要: #include <bits/stdc++.h> using namespace std; class Point { public: Point(int xx=0,int yy=0) { x=xx; y=yy; } Point(Point &p); int getX() { return x; } 阅读全文
posted @ 2023-05-24 18:41 记得关月亮 阅读(9) 评论(0) 推荐(0)