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';
return x;
}
PS:谁还能更短(>.<)
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';
return x;
}
PS:谁还能更短(>.<)