题解 | #编排字符串#

编排字符串

https://www.nowcoder.com/practice/42c0673f04b34f66ae236a1cb7995532

#include <bits/stdc++.h>
using namespace std;
int main() {
    int n;cin>>n;
    vector<string>v;
    while(n--){
        int k=1;
        string temp;
        cin>>temp;
        v.push_back(temp);
        for(auto a = v.rbegin();a!=v.rend();a++)
            if(k<5)
                cout<<k++<<"="<<*a<<" ";
        cout<<endl;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

无敌虾孝子:喜欢爸爸还是喜欢妈妈
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务