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
相關文章
相關標籤/搜索