这是什么神奇的判定

P1914 小书童——凯撒密码

DaHuang_GoldGOOD @ 2018-10-31 22:09:21

为什么直接零分?

include<iostream>

using namespace std;

int main()

{

int a,i=0;
char b[50],c[1];
cin>>a;
c[0]=cin.get();
while((b[i]=cin.get())!='\n')
{   
    b[i]=b[i]+a;
    i++;
}
for(int u=0;u<i;u++)
{
    if(b[u]>'z')
    b[u]=b[u]-26;
}
for(int u=0;u<i;u++)
cout.put(b[u]);
return 0;

}


by 萌田薰子 @ 2018-10-31 22:10:13

哈哈哈哈我也是0分改了三个月


by 33028120040712wcl @ 2018-10-31 22:10:59

希望更丰富的展现?使用Markdown


by DaHuang_GoldGOOD @ 2018-11-01 21:31:53

@33028120040712wcl 这是c++啊


|