QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#499995 | #8516. LED Matrix | HuangHanSheng | Compile Error | / | / | C++14 | 689b | 2024-07-31 20:59:07 | 2024-07-31 20:59:09 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘int main()’: answer.code:33:25: error: expected ‘}’ before ‘else’ 33 | else | ^~~~ answer.code:30:99: note: to match this ‘{’ 30 | if (matrix1[i].find('-') != string::npos && matrix2[i].find('*') != string::npos) { | ^ answer.code: At global scope: answer.code:39:9: error: ‘cout’ does not name a type 39 | cout << result << endl; | ^~~~ answer.code:41:9: error: expected unqualified-id before ‘return’ 41 | return 0; | ^~~~~~ answer.code:42:1: error: expected declaration before ‘}’ token 42 | } | ^