文章
28
粉丝
221
获赞
17
访问
88.0k
#include <iostream>
#include <string>
using namespace std;
int main(){
string s;
cin>>s;
//声明输入字符串s,并做输入
string b="gzu";
//做gzu子串赋值
int f= s.find(b);//声明f,记录在s中用find函数匹配到b,的位置
while (f>-1) {
//若仍返回位置,则继续循环删除
s.erase(f, 3);//利用erase删除s中f开始,长度为3的字符串
f= s.find(b);//继续匹配
}
cout<<s;//输出符合要求的字符串
return 0;
}
登录后发布评论
暂无评论,来抢沙发