QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#56257 | #3353. Robberies | GuanYunchang | Compile Error | / | / | C++17 | 661b | 2022-10-18 09:33:22 | 2022-10-18 09:33:23 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
詳細信息
answer.code:6:19: error: expected ‘]’ before ‘;’ token 6 | #define maxn 10000; | ^ answer.code:7:11: note: in expansion of macro ‘maxn’ 7 | double dp[maxn]; | ^~~~ answer.code:7:15: error: expected unqualified-id before ‘]’ token 7 | double dp[maxn]; | ^ answer.code: In function ‘int main()’: answer.code:27:17: error: ‘dp’ was not declared in this scope 27 | dp[0]=1; | ^~