标签:space bit ++ clu style its include ace span
#include<bits/stdc++.h> using namespace std; int32_t main() { stack<int> st; st.push(1); st.push(2); st.push(3); cout<<st.size()<<endl; while(!st.empty()) { cout<<st.top()<<endl; st.pop(); } }
标签:space bit ++ clu style its include ace span
原文地址:https://www.cnblogs.com/Andromeda-Galaxy/p/9517520.html