2022年9月29日

实验1 类与对象

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

posted @ 2022-09-29 18:56 WREKER 阅读(26) 评论(0) 推荐(0) 编辑

导航