80分,三号测试点一直没对过。

P1914 小书童——凯撒密码

心愿愿星 @ 2017-07-29 13:06:20

求大神指教,帮忙看一下程序源代码那里有错。

#include<iostream>
using namespace std;
int main()
{int a;
 char mi[15]={0};
 cin>>a>>mi;
 for(int i=0;mi[i]!='\0';i++)cout<< char((mi[i]-'a'+a)%26+'a'); 
 return 0;
}

by 洛水·锦依卫 @ 2017-07-30 14:16:30

... 数组开小了

开到100个肯定过


by alphc @ 2017-08-02 14:49:33

不知道。。。三号的数据。。

26 qwertyuiopasdfghjklzxcvbnm


by yao丶DK @ 2017-08-02 18:21:11

你目测也知道这一串超过15字符了啊,数组开大一点


|