提交时间:2019-11-23 16:43:47

运行 ID: 2357

#include<iostream> int main(){ short a,b[20000],d=0,e=100,i; float c=0; scanf("%hd",&a); for (i=0;i<a;i++) { scanf("%hd",&b[i]); if (d<b[i]) d=b[i]; if (e>b[i]) e=b[i]; c+=b[i]; } c=(c-d-e)/(a-2); printf("%d",c); return 0; }