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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER4-5.cpp
  2. #include <stack>
  3. #include <iostream>
  4. using namespace std;
  5. void main()  
  6. {  stack <int > st;
  7.    for (int i=0; i < 10; i++) st.push (i);
  8.    while ( !st.empty() ) { cout << st.top() << " "; st.pop(); }
  9.    cout << endl;
  10. }