求大佬看一下哪里错了,是在检查不出错了

P1200 [USACO1.1] 你的飞碟在这儿 Your Ride Is Here

希望更丰富的展现?使用markdown
by Meatherm @ 2018-11-27 20:28:02


@[yh123](/space/show?uid=153166) 请将你的代码头尾各加三个``` 例如你的代码是: ```cpp # include<bits/stdc++.h> using namespace std; int main() { string x,y; cin>>x>>y; int sum1=1; int sum2=1; for(int i=0;i<x.size();i++) { sum1=x[i]-64; } for(int i=0;i<y.size();i++) { sum2=y[i]-64; } if(sum1%47==sum2%47) { cout<<"Go"<<endl; } else { cout<<"STAY"<<endl; } return 0; } ``` 这样对吧
by Meatherm @ 2018-11-27 20:30:24


@[yh123](/space/show?uid=153166) 你的"GO“没有大写
by Meatherm @ 2018-11-27 20:32:05


~~希望更丰富的展现?[使用Markdown](https://www.luogu.org/wiki/show?name=%E5%B8%AE%E5%8A%A9%EF%BC%9Amarkdown)~~
by VC_Project @ 2018-11-27 20:34:01


|