正常做法
#include<bits/stdc++.h>
#define MAXINT 32767
using namespace std;
typedef long long ll;
typedef struct country{
int no;
int gd,sum;
double gdp,sump;
int best,bsort;
}country;
bool cmp1(country a,country b)
{
return a.gd>b.gd;
}
bool cmp2(country a,country b)
...