hzyyyyyy


私信TA

用户名:18222895524

访问量:561

签 名:

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

  自我简介:

#include<iostream>
#include<algorithm>
#include<string>
#include<set>
using namespace std;
int main()
{
    set<string>S;
    string a;
    while(cin>>a)
        S.insert(a);
    cout<<S.size();
    return 0;
}


 

0.0分

0 人评分

  评论区

补充:set 输出
 set<int>::iterator iter;
 for(iter=s.begin();iter!=s.end();iter++)
    cout<<*iter<<" ";
2022-09-17 13:57:22
  • «
  • 1
  • »