解题思路:
注意事项:
参考代码:
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
const int N=1e5+1;
char s[N];
int main()
{
cin.getline(s,N);
for(int i=0; i<strlen(s); i++)
{
if (s[i] >= 'A' && s[i] <= 'E')
s[i] += 21;
else if (s[i] >= 'F' && s[i] <= 'Z')
s[i] -= 5;
}
cout<<s;
return 0;
}
0.0分
0 人评分