define N 8void main(){ float score[N] = {22.3, 33.2, 23.2, 77.3, 88.3, 88.5,88.5,22.3};float sum = score[0];float min = score[0];float max = score[0];int iMaxNum = 1; // 最大分数的人的个数 int iMinNum = 1; // 最小分数的人的个数 int...