请写一个同样功能的C++代码 #include <iostream> #include <string> using namespace std; int main() { string str1; string str2; while(getline(cin, str1))// 输入第一个字符串 { getline(cin, str2); // 输入第二个字符串 size_t pos = 0; while ((pos =
时间: 2024-02-26 11:55:23 浏览: 229
使用include <iostream>时一定要加using namespace std
str1.find(str2, pos)) != string::npos) // 在第一个字符串中查找第二个字符串 { str1.replace(pos, str2.length(), ""); // 将查找到的第二个字符串替换为空 pos += str2.length(); // 更新 pos 的位置 } cout << str1 << endl; // 输出处理后的字符串 } return 0; }
阅读全文