关于ascii
2023-07-25 15:45:24
发布于:浙江
5阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
char str[10001];
gets(str);
for(int i=0;i<strlen(str);i++){
if(str[i]>='a' and str[i]<='y') cout<<char(str[i]+1);
else if(str[i]=='z') cout<<"a";
else cout<<str[i];
}
return 0;
}
这里空空如也
有帮助,赞一个