Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131728 魏宏搏 利用指针编写strlen函数 C++ Accepted 2 MS 276 KB 136 2025-10-01 11:15:23

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; string a; int main(){ getline(cin,a); int len=a.size(); cout<<len; return 0; }