Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
125130 | 晏莞煜 | 单词的长度 | C++ | Accepted | 1 MS | 276 KB | 381 | 2025-07-13 15:27:44 |
#include<iostream> #include<cstring> using namespace std; int main(){ string s; getline(cin,s); int len=s.size(); int k=0,a=0; for(int i=0;i<len;i++){ if(s[i]!=' '){ k++; }else{ if(k!=0){ if(a==0){ cout<<k; a=1; } else{ cout<<","<<k; } k=0; } } if(i==len-1){ cout<<","<<k; } } return 0; }