60分dalao救救我吧

P1914 小书童——凯撒密码

Hallucination @ 2018-09-14 20:46:57

#include<bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    int n;
    cin>>n;
    cin>>s;
    for(int i=0;i<=s.size();i++)
    s[i]=char(s[i])+n;
    cout<<s;
    return 0;
}

by _Konkacer_ @ 2018-09-14 21:02:22

@宇宙最帅的人

ASCII码最大是127,如果这个字符是z并且n>5的话,就会发生一些奇妙的错误(然而并不知道是什么样奇妙的错误)


by Hallucination @ 2018-09-14 21:05:20

@蒟蒻而已 我已经把这道题A了


|