题解 | #字符串的反码#

字符串的反码

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

#include <stdio.h>
#include <string.h>
int main(){
    char text[81] = {0};
    gets(text);
    int len = strlen(text);
    char reverse[len];
    for (int i = 0; i < len; ++i) {
        if (text[i] >= 97 && text[i] <= 122){
            printf("%c", 122 - (text[i] - 97));
        }
        else if (text[i] >= 'A' && text[i] <= 'Z'){
            printf("%c", 90 - (text[i] - 65));
        }
        else{
            printf("%c", text[i]);
        }
    }
    return 0;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
09-30 19:49
起名星人:蛮离谱的,直接要求转投销售
投递汇川技术等公司10个岗位
点赞 评论 收藏
分享
废铁汽车人:秋招真是牛鬼蛇神齐聚一堂
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务