QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#233353 | #7635. Fairy Chess | ucup-team2108 | Compile Error | / | / | C++20 | 225b | 2023-10-31 16:45:17 | 2023-10-31 16:45:18 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:8:33: warning: missing terminating " character 8 | if(s=="BBAARRCCQQMM") cout<<"Bob<<'\n'; | ^ answer.code:8:33: error: missing terminating " character 8 | if(s=="BBAARRCCQQMM") cout<<"Bob<<'\n'; | ^~~~~~~~~~~ answer.code: In function ‘int main()’: answer.code:7:10: error: ‘s’ was not declared in this scope 7 | cin>>s; | ^ answer.code:9:5: error: expected primary-expression before ‘else’ 9 | else cout<<"Alice"<<'\n'; | ^~~~