编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#3116 | #1005. 兜圈子 | Compile Error | 0 | 0 ms | 0 K | C++ 17 (Clang) / 1.2 K | t330026054 | 2023-11-23 10:55:38 |
using namespace std;
int
编译信息
/sandbox/1/a.cpp:16:10: error: use of undeclared identifier 'strlen'
cout << strlen(move) << endl;
^
/sandbox/1/a.cpp:18:34: error: use of undeclared identifier 'strlen'
for (int counter = 0; counter < strlen(move); counter++)
^
/sandbox/1/a.cpp:24:32: error: use of undeclared identifier 'strlen'
for (int counter =0; counter <strlen(move); counter++)
^
3 errors generated.