先a[n] = {...};里面是那些数据int max = a[0];(那n个人的身高组成数组a[n-1],先假设第一个数据是最大的)for(int i = 1; i <= n-1; i++){ if(max < a[i]) max = a[i];}printf("%d\n", max);