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

洛谷 P1914 小书童——凯撒密码

程序员文章站 2022-06-25 16:11:34
洛谷 P1914 小书童——凯撒密码水题用(s[i]-‘a’+n)%26+'a’来进行字母的变换贴代码:/* * @Description: * @Author: 多多 * @Date: 2020-10-24 10:17:53 * @LastEditTime: 2020-10-24 11:06:56 * @LastEditors: 多多 */#include using namespace std;int main(){...

洛谷 P1914 小书童——凯撒密码

水题

  • 用(s[i]-‘a’+n)%26+'a’来进行字母的变换

贴代码:

/*
 * @Description: 
 * @Author: 多多
 * @Date: 2020-10-24 10:17:53
 * @LastEditTime: 2020-10-24 11:06:56
 * @LastEditors: 多多
 */
#include <bits/stdc++.h>
using namespace std;

int main()
{
    freopen("P1914.in", "r", stdin);
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    string s;
    cin >> s;
    for (int i = 0; i < s.length(); i++)
    {
        s[i] = (s[i] - 'a' + n) % 26 + 'a';
    }
    cout << s << endl;
    return 0;
}

本文地址:https://blog.csdn.net/weixin_39117125/article/details/109256348

相关标签: 洛谷 c++