题解 | #字符串的反码#

字符串的反码

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

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



int main() {
    string str;
    while (cin >> str) {
        for (int i = 0; i < str.size(); i++) {
            char c = str[i];
            if (c >= 'a' && c <= 'z') {
                int distance = c - 'a';
                c = 'z' - distance;
            }
            if (c >= 'A' && c <= 'Z') {
                int distance = c - 'A';
                c = 'Z' - distance;
            }
            cout << c;
        }
        cout << endl;
    };

}

全部评论

相关推荐

10-15 03:05
门头沟学院 Java
CADILLAC_:凯文:我的邮箱是死了吗?
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务