题解 | #Zero-complexity#

Zero-complexity Transposition

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

#include <iostream>
#include <stack>

using namespace std;
stack<int> bb;
int main() {
    int n;
    cin >>n;
    int x; 
    while (scanf("%d",&x) != EOF) { // 注意 while 处理多个 case
        bb.push(x);
    }
    int y = bb.size();
    for(int i=1;i<=y;++i){
        printf("%d ",bb.top());
        bb.pop();
    }


}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

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