jtj
2024-04-05 16:23:38
发布于:广东
1阅读
0回复
0点赞
~~#include<bits/stdc++.h>
using namespace std;
string s;
int main(){
cin>>s;
int len=s.size();
if(s[len-1]=='r' and s[len-2]=='e')
{
for(int i=0;i<=len-3;++i) cout<<s[i];
}
else if(s[len-1]=='y' and s[len-2]=='l')
{
for(int i=0;i<=len-3;++i) cout<<s[i];
}
else if(s[len-1]=='g' and s[len-2]=='n' and s[len-3]=='i')
{
for(int i=0;i<=len-4;++i) cout<<s[i];
}
else cout<<s;
return 0;
}~~
这里空空如也
有帮助,赞一个