为什么一直0呢

P1914 小书童——凯撒密码

Kirisame_Marisa_ @ 2017-05-20 22:13:00

一直"Too many or too few lines"

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int d;
char s[1000000];
int main()
{
    cin>>d;
    getchar();
    gets(s);
    d%=26;
    for(int i=0;i<strlen(s);i++)
    {
        s[i]+=d;
        if(s[i]>'z')
            s[i]=s[i]-'z'+'a';
        putchar(s[i]);
    }
    return 0;
}

by Kirisame_Marisa_ @ 2017-05-20 22:15:06

我去还不能用getchar去换行符

验证码:hp33 (命不久矣!)


|