题解 |栈操作 c++

Zero-complexity Transposition

https://www.nowcoder.com/practice/c54775799f634c72b447ef31eb36e975

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    stack <long long> s;
    long long x;
    cin>>n;
    for(int i=0;i<n;i++){
        cin>>x;
        s.push(x);
    }
    while(!s.empty()){
        cout<<s.top()<<" ";
        s.pop();
    }

}

全部评论

相关推荐

评论
点赞
收藏
分享
牛客网
牛客企业服务