QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#609925 | #6423. Fireworks | ZhangYiDe | Compile Error | / | / | C++17 | 976b | 2024-10-04 14:28:07 | 2024-10-04 14:28:08 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘int main()’: answer.code:3:3: error: ‘printf’ was not declared in this scope 3 | printf("%d %d\n",n,m); | ^~~~~~ answer.code:1:1: note: ‘printf’ is defined in header ‘<cstdio>’; did you forget to ‘#include <cstdio>’? +++ |+#include <cstdio> 1 | int main() { answer.code:24:25: error: ‘puts’ was not declared in this scope 24 | for (int i=0;i<n;++i) puts(mp[i]); | ^~~~