摘要: //输出 9 22 5 #include using namespace std; class Sample { public: int v; Sample(int n){ v = n ; } Sample(){ } Sample(const Sample & a){ v = a.v + 2;... 阅读全文
posted @ 2018-03-10 10:33 Latticeeee 阅读(392) 评论(0) 推荐(0) 编辑