#ZerocomplexityTransposition#

Zero-complexity Transposition

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

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

int main() {
    int n;
    while(cin>>n){
        string s;
        vector<string>v;
        while(cin>>s)
            v.push_back(s);
        for(auto i =v.rbegin();i!=v.rend();i++)
            cout<<*i<<" ";
        cout<<endl;
    }
}
// 64 位输出请用 printf("%lld")

longlong真不如string

全部评论

相关推荐

10-15 16:27
门头沟学院 C++
LeoMoon:建议问一下是不是你给他付钱😅😅
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务