题解
2023-06-25 15:16:36
发布于:上海
94阅读
0回复
0点赞
#include<iostream>
#include<cstring>
using namespace std;
int main(){
string s;
int flag = 1;
while(cin>>s){
if(flag ==1){
cout<<s.length();
flag = 0;
}else{
cout<<","<<s.length();
}
}
return 0;
}
这里空空如也
有帮助,赞一个