sort()排序方法 #include <iostream> #include <cstdio> #include <algorithm> using namespace std; int arr[10]; bool cmp(int x, int y) { /*三种情况: 1.同为奇数,返回大的 2.同为偶数,返回小的 3.奇偶相异,返回奇数 */ if (x%2==1 && y%2==1) return x > y; else if (x%2==0 &a...