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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER6-11.cpp
  2. #pragma warning(disable:4786)
  3. #include <iostream.h>
  4. #include <vector>
  5. #include <algorithm>
  6. using namespace std;
  7. void main (void) 
  8. {
  9. vector<int> Scores;
  10. Scores.push_back(100); 
  11. Scores.push_back(80);
  12. Scores.push_back(45); 
  13. Scores.push_back(75);
  14. Scores.push_back(99); 
  15. Scores.push_back(100);
  16. int NumberOf100Scores(0);     
  17. NumberOf100Scores=count (Scores.begin(), Scores.end(), 100);
  18. cout << "There were " << NumberOf100Scores << " scores of 100" << endl;
  19. }