有没有神犇解一下

P1914 小书童——凯撒密码

pengja @ 2017-10-17 21:14:39

40分求dalao看一下为什么错了

#include<cstdio>
#include<iostream>
#include<string>
using namespace std;
string s;
int main()
{
    int n;
    cin>>n>>s;
    for(int i=0;i<s.size();i++)
    {
        s[i]+=n;
        if(s[i]>='z')
        s[i]-='a';
    }
    cout<<s;
}

by sjl40 @ 2017-10-28 07:18:45

他这里不应该-a,而是-y。因为他要把‘z’变成‘a’。


|