摘要:
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)
浙公网安备 33010602011771号