文章
105
粉丝
69
获赞
117
访问
56.5k
#include<bits/stdc++.h>
using namespace std;
string str;
int main()
{
while(getline(cin, str))
{
int cnt = 0;
for(int i = 0; i < str.size(); i ++)
{
if(str[i] != ' ') cnt ++;
if((str[i - 1] == ' ' && str[i] != ' ') || str[i] == '.')
{
cout << cnt - 1 << " ";
cnt = 1;
}
}
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发