摘要: 一、建立点类 //点类 class point { public: //设置 void setX(float x) { X = x; } // void setY(float y) { Y = y; } //获取 float getX() { return X; } float getY() { r 阅读全文
posted @ 2022-06-14 01:14 伸手见五指 阅读(227) 评论(0) 推荐(0)