编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#3118 | #1005. 兜圈子 | Compile Error | 0 | 0 ms | 0 K | C++ 17 / 1.2 K | t330026054 | 2023-11-23 10:56:38 |
using namespace std;
int
编译信息
/sandbox/1/a.cpp: In function 'int main()':
/sandbox/1/a.cpp:16:10: error: 'strlen' was not declared in this scope
16 | cout << strlen(move) << endl;
| ^~~~~~
/sandbox/1/a.cpp:4:1: note: 'strlen' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
3 | #include <iostream>
+++ |+#include <cstring>
4 | using namespace std;