摘要: 实验三 4_11源码: include using namespace std; class CRectangle { public : int w,h; int Area(){ return w h; } void Init(int w_, int h_){ w=w_; h=h_; } }; in 阅读全文
posted @ 2018-04-09 18:33 obamax 阅读(96) 评论(1) 推荐(0) 编辑