题解
2024-12-29 12:54:52
发布于:浙江
1阅读
0回复
0点赞
#include<bits/stdc++.h>>
using namespace std;
int main(){
char c[10010];
fgets(c,10010,stdin);
int n=strlen(c);
for(int i=0;i<n;i++){
if(c[i]=='z'){
cout<<'a';
continue;
}else if(c[i]==' '){
cout<<' ';
continue;
}
c[i]+=1;
cout<<c[i];
}
return 0;
}
这里空空如也
有帮助,赞一个