题解
2024-11-10 21:55:00
发布于:江苏
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'){
cout<<'a';
continue;
}else if(c[i]' '){
cout<<' ';
continue;
}
c[i]+=1;
cout<<c[i];
}
return 0;
}
这里空空如也
有帮助,赞一个