别说话安静点 @ 2016-12-26 23:06:46
我交了三次都是0分,我真是无语了。
by kkksc03 @ 2016-12-27 00:16:08
是你程序写的有问题。详见帮助,提到了原因。洛谷没有任何问题
by McGrady @ 2016-12-29 23:37:10
pascal最好了
by DPDPDPDP @ 2017-01-04 09:28:18
帮助在哪.. @kkksc03
by McGrady @ 2017-01-18 15:53:20
页面最下方
by fygzmc515 @ 2017-02-17 17:00:49
不明觉厉###>
by zzuzxy @ 2017-02-21 23:24:11
http://www.ruanyifeng.com/blog/2006/04/post\_213.html
上面的网址看了之后是不是无fuck说,我也被坑了好久,我的primer plus没看好,
by 神犇的蒟蒻 @ 2017-02-22 21:15:30
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
using namespace std;
char s[105];
int n;
int main(){
cin>>n;
cin>>s;
int t=strlen(s);
for (int i=0;i<t;i++){
char s1=s[i]+n;
if (s1>='a'&&s1<='z')
cout<<s1;
else{
char s2=s1-26;
cout<<s2;
}
}
return 0;
}