#include "stdafx.h" #include<iostream> #include <math.h> #include <algorithm> using namespace std; bool f1(char c1, char c2) --从大到小排序 { if (c1>c2) { return true; } return false; } int _tmain(int argc, _TCHAR* argv[]) { int arr[5] = { '1', '8', '5', '7', '2' }; bool(*pF...