2016年6月24日

摘要: string int2str(int x) { return x ? num2str(x/10)+string(1,x%10+'0') : "";} int str2int(string s) { int x = 0; for (char it : s) x = x*10+it-'0'; retur 阅读全文
posted @ 2016-06-24 21:07 蜗牛快爬 阅读(130) 评论(0) 推荐(0)
 
摘要: 51nod 阅读全文
posted @ 2016-06-24 21:04 蜗牛快爬 阅读(198) 评论(0) 推荐(0)