题解
2023-08-30 12:47:07
发布于:江苏
6阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
string s;
cin>>s;
for(int i=0;i<s.length();i++){
if(s[i]>='a' && s[i]<='w'){
cout<<char(s[i]+1)<<char(s[i]+2)<<char(s[i]+3);
}else if(s[i]=='x'){
cout<<"yza";
}else if(s[i]=='y'){
cout<<"zab";
}else if(s[i]=='z'){
cout<<"abc";
}else{
cout<<s[i];
}
}
return 0;
}
这里空空如也
有帮助,赞一个