example305.cpp
来自「Data Abstraction & Problem Solving with 」· C++ 代码 · 共 24 行
CPP
24 行
#include <iostream>#include <stack>using namespace std;int main(){ stack<int> aStack; int item; // Right now, the stack is empty if (aStack.empty()) cout << "The stack is empty" << endl; for (int j = 0; j < 5; j++) aStack.push(j); // places items on top of stack while (!aStack.empty()) { cout << aStack.top() << " "; aStack.pop(); } // end while return 0;} // end main
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?