排序 - 华科(C++ 11) 题解:
#include<bits/stdc++.h>
using namespace std;
int n;
int main()
{
while(cin >> n)
{
vector<int> res;
for(int i = 0; i < n; i ++)
{
int x; cin >> x;
res.push_back(x);
}
sort(res.begin(), res.end());
for(auto x : res)
cout << x << " ";
cout << endl;
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发