Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
55535 戴文博 利用指针编写strlen函数 C++ Accepted 2 MS 280 KB 100 2023-07-29 10:43:10

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ string n; cin>>n; cout<<n.size(); }