Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
99414 Kevin 单词的长度 C++ Accepted 1 MS 280 KB 180 2024-11-28 14:28:01

Tests(5/5):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ string s; bool f=1; while(cin>>s){ if(f) f=0; else cout<<","; cout<<s.size(); } return 0; }