解题思路:
注意事项:
参考代码:
#include <iostream>
#include <string>
#include <stdlib.h>
using namespace std;
int main(){
string str, str2;
getline(cin , str);
for(char c : str){
if((c >= 'a' && c < 'z') || (c >= 'A' && c < 'Z')){
c++;
}
else if(c == 'z'){
c = 'a';
}
else if(c=='Z'){
c = 'A';
}
str2 += c;
}
cout << str2 << endl;
return 0;
}
0.0分
2 人评分