摘要: #include <iostream>using namespace std; class point{ public: point():x(10),y(20) { } void outxy(void); void setxy(int ,int); private: int x; int y;}; 阅读全文
posted @ 2019-01-17 16:36 小小小笨蛋 阅读(960) 评论(0) 推荐(0) 编辑