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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER6-3.cpp
  2. #pragma warning(disable:4786)
  3. #include <string>
  4. #include <vector>
  5. #include <iostream>
  6. using namespace std;
  7. void main () 
  8. { vector<string> Myvector;
  9.   cout<<"Good for using namespace"<<endl;
  10.   cout<<"Good for no warning message!"<<endl;
  11. }