题解
2024-07-29 14:15:41
发布于:广东
24阅读
0回复
0点赞
#include<iostream>
#include<stack>
using namespace std;
int main(){
int n,x;
stack<int> st;
cin>>n;
for(int i=1;i<=n;i++){
cin>>x;
st.push(x);
}
while(!st.empty()){
cout<<st.top()<<" ";
st.pop();
}
return 0;
}
这里空空如也
有帮助,赞一个