Run ID:113001

提交时间:2025-03-15 10:42:18

#include<bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); int len=s.size(); int k=0; for(int i=0;i<len;i++){ if(s[i]!=' '){ k++; } else if(s[i]==' '&&k>0){ cout<<k<<","; k=0; } if(i==len-1&&k>0){ cout<<k; } } }