#29050: c++ stack


s411085056@gm.ntpu.edu.tw (小宥)

學校 : 新北市立鶯歌高級工商職業學校
編號 : 171301
來源 : [180.217.114.77]
最後登入時間 :
2022-05-28 11:00:45
f345. 新手練習題—陣列 -- wseds | From: [180.217.244.181] | 發表日期 : 2022-01-25 14:57

#include <bits/stdc++.h>

using namespace std;

int main()
{
int n, num;
cin >> n;
stack <int> s;
while (cin >> num)
s.push(num);
while (!s.empty()) {
cout << s.top() << ' ';
s.pop();
}
cout << endl;
return 0;
}
 
ZeroJudge Forum