文章
49
粉丝
90
获赞
9
访问
27.3k
#include <iostream>
using namespace std;
int main()
{
string s;
while (cin >> s)
{
string::iterator it;
for (it = s.begin(); it < s.end(); it++)
{
if (*it >= 'a' && *it <= 'z')
{
*it += 3;
if (*it > 'z')
{
*it %= 'z';
*it += 'a' - 1;
}
}
if (*it >= 'A' && *it <= 'Z')
{
*it += 3;
if (*it > 'Z')
{
*it %= 'Z';
*it += 'A' - 1;
}
}
}
cout << s << " ";
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发