easy
2024-11-24 17:46:48
发布于:广东
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;
}
这里空空如也
有帮助,赞一个