CHAPTER4-11.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:0k
源码类别:

STL

开发平台:

C/C++

  1. //文件名:CHAPTER4-11.cpp
  2. #include <string>
  3. #include <iostream>
  4. #include <set>
  5. #include <algorithm>
  6. using namespace std;
  7. void listWords(istream& in, ostream& out)
  8. {    string s;
  9. set<string> mySet;
  10. unsigned int size=0;
  11.      while (size<2){in >> s; mySet.insert(s); size++;}
  12.         for (set<string>::iterator b = mySet.begin(); b != mySet.end();  b++) {out << *b << endl;}
  13. }
  14. void main() { listWords(cin, cout);}