QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#597509 | #9417. Palindromic Polygon | ucup-team5045# | Compile Error | / | / | C++17 | 3.0kb | 2024-09-28 17:58:02 | 2024-09-28 17:58:03 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code:99:5: error: expected unqualified-id before ‘for’ 99 | for(int i = 0;i + n - 1 < n * 2;i++) { | ^~~ answer.code:99:19: error: ‘i’ does not name a type 99 | for(int i = 0;i + n - 1 < n * 2;i++) { | ^ answer.code:99:37: error: ‘i’ does not name a type 99 | for(int i = 0;i + n - 1 < n * 2;i++) { | ^ answer.code:102:5: error: ‘cout’ does not name a type 102 | cout << res << endl; | ^~~~ answer.code:107:1: error: expected declaration before ‘}’ token 107 | } | ^