文章
8
粉丝
49
获赞
1
访问
4.0k
#include<bits/stdc++.h> using namespace std; int main(){ string s; int k; cin>>s; while(1){ k=s.find("gzu"); if(k!=-1) s.erase(s.begin()+k,s.begin()+k+3);//直接放k不行 else break; } cout<<s; return 0; }
登录后发布评论
暂无评论,来抢沙发