220011wan

导航

2022年9月28日 #

实验一作业

摘要: 1 #include <iostream> 2 using namespace std; 3 // 定义Point类 4 class Point 5 { 6 public: 7 Point(int x0 = 0, int y0 = 0); 8 Point(const Point &p); 9 ~Po 阅读全文

posted @ 2022-09-28 20:52 或者明天 阅读(12) 评论(0) 推荐(0) 编辑