文章
117
粉丝
69
获赞
827
访问
90.2k
#include<bits/stdc++.h> using namespace std; int main() { string str; getline(cin, str); for(int i = 0; i < str.size(); i ++) { if(str[i] == 'g' && str[i + 1] == 'z' && str[i + 2] =='u') { i += 2; continue; } cout << str[i] ; } return 0; }
登录后发布评论
暂无评论,来抢沙发