#include "iostream" #include "vector" #include "algorithm" using namespace std; struct Country{ int G, M, P; float G_P, M_P; int r[4]; // 四种排序方式下的排名 int number; }; bool compare1(Country a, Country b){ return a.G > b.G; } bool compare2(Country...