题解 | #简单密码#

简单密码

https://www.nowcoder.com/practice/ff99c43dd07f4e95a8f2f5448da3772a

#include <bits/stdc++.h>
using namespace std;
int main()
{
    string  str;
    while(getline(cin,str))
    {
        if (str=="ENDOFINPUT")
        {
            break;
        } else if (str!="START"&&str!="END")
        {
            for (int i = 0; i < str.size(); ++i) {
                if (str[i]>='a'&&str[i]<='z'||str[i]>='A'&&str[i]<='Z')
                {
                    str[i]=(str[i]-'A'-5+26)%26+'A';
                }
            }
            cout<<str<<endl;
        }
    }
}

全部评论

相关推荐

10-28 14:42
门头沟学院 Java
watermelon1124:因为嵌入式炸了
点赞 评论 收藏
分享
手撕没做出来是不是一定挂
Chrispp3:不会,写出来也不一定过
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务