在c++中用sort小到大排序10,3,2,5,1,3,8,1,9,7
时间: 2024-04-24 16:18:50 浏览: 55
通过c++的sort函数实现成绩排序功能
在C++中,可以使用标准库中的`sort`函数数组进行排序。以下是对数组`10,3,2,5,1,3,8,1,9,7`进行小到大排序的示例代码:
```cpp
#include <iostream>
#include <algorithm>
#include <vector>
int main() {
std::vector<int> nums = {10, 3, 2, 5, 1, 3, 8, 1, 9, 7};
std::sort(nums.begin(), nums.end());
for (int num : nums) {
std::cout << num << " ";
}
return 0;
}
```
运行以上代码,输出结果为:`1 1 2 3 3 5 7 8 9 10`。
阅读全文