题解 | #密码翻译#

密码翻译

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

#include <stdio.h>
#include <string.h>

int main() {
    char s[90];
    while (gets(s)) {
        int len=strlen(s);
        for (int i=0; i<len; i++) {
            if (s[i]==' ') {
                continue;
            }
            else if (s[i]>='a'&&s[i]<'z'||s[i]>='A'&&s[i]<'Z') {
                s[i]+=1;
            }else if (s[i]=='z'||s[i]=='Z') {
                s[i]-=25;
            }
        }
        printf("%s\n",s);
    }
    return 0;
}

全部评论

相关推荐

服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
昨天 18:54
门头沟学院 Java
点赞 评论 收藏
分享
09-29 17:44
已编辑
蔚来_测(准入职员工)
//鲨鱼辣椒:见不了了我实习了四个月上周再投筛选了一天就给我挂了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务