题解 | #字符串的反码#

字符串的反码

https://www.nowcoder.com/practice/01b7dae14d1b464db5f9259e90d9a35e

#include <cstdio>
#include <string>
#include <iostream>
using namespace std;
int main(){
    string str1;
    while (getline(cin,str1)){
        for(int i=0;i<str1.length();i++){
            if(str1[i]>='A'&&str1[i]<='Z'){
                printf("%c",90-(str1[i]-65));
            }
            else if(str1[i]>='a'&&str1[i]<='z'){
                printf("%c",122 - (str1[i] - 97));
            } else{
                printf("%c",str1[i]);
            }
        }
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
10-12 10:48
已编辑
秋招之苟:邻居家老哥19届双2硕大厂开发offer拿遍了,前几天向他请教秋招,他给我看他当年的简历,0实习实验室项目技术栈跟开发基本不沾边😂,我跟他说这个放在现在中厂简历都过不了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务