文章
19
粉丝
98
获赞
3
访问
9.9k
#include <bits/stdc++.h> using namespace std; int main() { char s[100]; fgets(s,100,stdin); string str=s; while(str.find("gzu")!=-1){ int pos=str.find("gzu"); str.erase(pos,3); } printf("%s",str.c_str()); return 0; }
登录后发布评论
暂无评论,来抢沙发