Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
14906 仇翌楷 利用指针编写strlen函数 C++ Accepted 3 MS 716 KB 133 2021-07-08 20:13:56

Tests(10/10):


Code:

#include <bits/stdc++.h> using namespace std; int main() { char a[1005]; gets(a); cout << strlen(a); return 0; }