解题思路:
注意事项:
参考代码:
#include <iostream> #include <string> using namespace std; int main() { bool if_output_comma(false); string s; while (cin >> s) { if (!if_output_comma) if_output_comma = true; else cout << ","; cout << s.size(); } return 0; }
0.0分
0 人评分