题解 | #密码翻译#

密码翻译

http://www.nowcoder.com/practice/136de4a719954361a8e9e41c8c4ad855

对于这种会变成环状的,一般可以考虑取模

#include <iostream>
#include <algorithm>
using namespace std;

int main()
{
    string a;
    getline(cin, a);
    for (int i = 0; i < a.size(); ++i)
    {
        if  (a[i] >= 'A' && a[i] <= 'Z') //是大写字母
            a[i] = (a[i] - 'A' + 1) % 26 + 'A';
        else if (a[i] >= 'a' && a[i] <= 'z')
            a[i] = (a[i] - 'a' + 1) % 26 + 'a';
    }
    cout << a << endl;
    return 0;
}
全部评论

相关推荐

10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务