7-1 排序 分数 15

7-1 排序 分数 15_第1张图片

#include
#include
#include
using namespace std;

int main() 
{
    int n = 0;
    cin >> n;

    vector<int> v;

    int x = 0;
    for (int i = 0; i < n; i++) 
    {
        cin >> x;
        v.push_back(x);
    }
    sort(v.begin(), v.end());
    for (auto it = v.begin(); it != v.end(); it++) 
    {
        if (it == v.begin())
            cout << *it;
        else 
            cout << " " << *it;
    }
}

你可能感兴趣的:(C语言经典题目,c语言,排序算法,算法,数据结构)