题解 | #使用算法#

使用算法

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

#include <functional>
#include <iostream>
#include <vector>
// write your code here......
#include <algorithm>

using namespace std;

void print(int x) {
    cout << x << " ";
}

int main() {

    int num;
    vector<int> v;
    for (int i = 0; i < 5; i++) {
        cin >> num;
        v.push_back(num);
    }

    // write your code here......
    sort(v.begin(), v.end(), greater<int>());

    for_each(v.begin(), v.end(), print);

    return 0;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-29 12:06
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务