题解
2024-11-15 22:25:07
发布于:江苏
0阅读
0回复
0点赞
#include<iostream>
#include<cstring>
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'){
c[i]='a';
continue;
}
if(c[i]==' '){
continue;
}
c[i]++;
}
cout<<c;
return 0;
}
这里空空如也
有帮助,赞一个