Run ID:113005

提交时间:2025-03-15 10:44:26

#include<bits/stdc++.h> using namespace std; string s; int main(){ 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; } } return 0; }