摘要: 题目总是看不懂,后来跑nocow上看翻译,虽然了解意思了,却被这几个规则搞的不知道从何下手,想着数字到底怎么变成这些字母,后来一看nocow题解第一个...直接把个十百千位枚举然后组合到一起便可...突然感觉自己智商有点捉鸡→_→ 1 /* 2 3 ID: hubiao cave 4 5 PROG: preface 6 7 LANG: C++ 8 9 */ 10 11 12 13 14 #include 15 16 #include 17 18 #include 19 20 using namespace std; 21 22 23 string ... 阅读全文
posted @ 2013-08-26 23:40 cavehubiao 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 开是查临时变量的相关资料class A{public: A() { cout<<"default construction"<<endl; } A(const A&) { cout<<"copy construction"<<endl; } A& operator =(const A& a) { cout<<"operator ="<<endl; } ~A() { cout<<"destruction"< 阅读全文
posted @ 2013-08-26 00:35 cavehubiao 阅读(282) 评论(0) 推荐(1) 编辑