依珝


私信TA

用户名:uq_14540017104

访问量:453

签 名:

等  级
排  名 169
经  验 6995
参赛次数 0
文章发表 2
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:  利用sstream 头文件中的istringstream 函数自动分出单词(以字符串的形式保存), 后面直接打印size函数

注意事项:

参考代码:

#include<iostream>

#include<string>

#include <set> 

#include <sstream>

using namespace std;


int main()

{

     string s;

     getline(cin,s);

     string arr;

     istringstream ss(s);

     int temp=0;

     while(ss>>arr)

     {

         if(temp==0)

         {

                  temp=1;

                  cout<<arr.size();

          }

          else

          {

                   cout<<","<<arr.size();

          }

     }


 

0.0分

2 人评分

  评论区

  • «
  • »