PAT-乙-1078 1078 字符串压缩与解压 (20 分)

代码 #include <iostream> #include <sstream> using namespace std; int strToInt(string s) { stringstream ss; int t; ss<<s; ss>>t; return t; } int main() { string s1, s2; getline(cin, s1); getl
相关文章
相关标签/搜索