一种与众不同的题解
2023-12-24 20:29:35
发布于:广东
13阅读
0回复
0点赞
#include <iostream>
#include <cstring>
using namespace std;
void str(){
string s;
bool flag = true;
while(cin >> s){
if(flag == true){
cout << s.length();
flag = false;
}else{
cout << "," << s.length();
}
}
return ;
}
int main(){
str();
return 0;
}
这里空空如也
有帮助,赞一个