Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
27731 傅镔涵 字符串的长度 C++ Accepted 1 MS 716 KB 140 2022-06-11 08:11:47

Tests(1/1):


Code:

#include<iostream> #include<string> using namespace std; int main(){ string s; getline(cin,s); cout<<s.size()<<endl; return 0; }