摘要: #include using namespace std;class Point2D{public: Point2D(int val) :y(val),x(y) { }private: int x; int y; public: void show() ... 阅读全文
posted @ 2012-04-26 23:58 wangicter的博客 阅读(297) 评论(0) 推荐(0) 编辑