欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

P1914 小书童——密码

程序员文章站 2022-07-13 11:58:39
...

P1914 小书童——密码

#include <bits/stdc++.h>

using namespace std;

int main() {
    int n;
    scanf("%d", &n);
    string str;
    cin >> str;
    n %= 26;
    while (n--)
        for (int i = 0; i < str.size(); i++)
            if (str[i] == 122)
                str[i] = 97;
            else
                str[i] += 1;
    printf("%s\n", str.c_str());
    return 0;
}