Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
12263 蒋瀚辉 字符串的长度 C++ Accepted 1 MS 720 KB 127 2021-05-20 13:46:31

Tests(1/1):


Code:

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