Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
11899 徐一喆 字符串的长度 C++ Accepted 1 MS 724 KB 126 2021-05-18 12:48:56

Tests(1/1):


Code:

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