abaga
2024-08-26 09:18:07
发布于:广东
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
stack<int> s;
int n;
cin >> n;
int x;
for(int i = 1; i <= n; i++){
cin >> x;
s.push(x);
}
while(s.size()){
cout << s.top() << " ";
s.pop();
}
return 0;
}
这里空空如也
有帮助,赞一个