文章
34
粉丝
316
获赞
10
访问
22.3k
using namespace std; int main() { string str; cin >> str; while (str.find("gzu") != string::npos) { int index = str.find("gzu"); str = str.replace(str.begin()+index, str.begin()+index+3, ""); } cout << str;
}
登录后发布评论
暂无评论,来抢沙发