题解 | #字符串加解密#

字符串加解密

https://www.nowcoder.com/practice/2aa32b378a024755a3f251e75cbf233a

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

string& encrypt(string& s) {
    for (char& c : s) {
        if (isalpha(c)) {   // 字母
            if (c >= 'a' && c <= 'z') {
                c = c == 'z' ? 'a' : c + 1;
                c = toupper(c);
            } else {
                c = c == 'Z' ? 'A' : c + 1;
                c = tolower(c);
            }
        } else { // 数字
            if (c != '9') c += 1;
            else c = '0';
        }
    }
    return s;
}
string& decrypt(string& s) {
    for (char& c : s) {
        if (isalpha(c)) {   // 字母
            if (c >= 'a' && c <= 'z') {
                c = c == 'a' ? 'z' : c - 1;
                c = toupper(c);
            } else {
                c = c == 'A' ? 'Z' : c - 1;
                c = tolower(c);
            }
        } else {
            if (c != '0') c -= 1;
            else c = '9';
        }
    }
    return s;
}

int main() {
    string str1, str2;
    cin >> str1 >> str2;
    cout << encrypt(str1) << endl << decrypt(str2) << endl;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

像好涩一样好学:这公司我也拿过 基本明确周六加班 工资还凑活 另外下次镜头往上点儿
点赞 评论 收藏
分享
10-15 03:05
门头沟学院 Java
CADILLAC_:凯文:我的邮箱是死了吗?
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-21 17:16
科大讯飞 算法工程师 28.0k*14.0, 百分之三十是绩效,惯例只发0.9
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务