本题考察大家对于栈的使用
2023-10-29 10:12:31
发布于:北京
14阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,m,k;
stack<int> p;
cin>>n;
m=n;
while(m--){
cin>>k;
p.push(k);
}
while(n--){
cout<<p.top()<<' ';
p.pop();
}
return 0;
}
这里空空如也
有帮助,赞一个