使用sort函数进行数组排序
实例说明:对包含10个元素125,-26,53,12,-6,95,46,85,-45,785的数组分别进行升序和降序排列。实现过程:#include <iostream>#include <algorithm>using namespace std;bool complare(int a,int b){ return a>b;}int main()...