mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
22 lines
447 B
C++
22 lines
447 B
C++
|
#include <stdio.h>
|
||
|
int main(void)
|
||
|
{
|
||
|
int n, i;
|
||
|
double min, max;
|
||
|
double x, y;
|
||
|
while (scanf("%d", &n) != EOF)
|
||
|
{
|
||
|
scanf("%lf", &x);
|
||
|
min = max = x;
|
||
|
for (i = 1 ; i < n ; i++)
|
||
|
{
|
||
|
scanf("%lf", &y);
|
||
|
x += y;
|
||
|
if (y > max) max = y;
|
||
|
if (y < min) min = y;
|
||
|
}
|
||
|
printf("%.2lf\n", (x - min - max) / (n - 2));
|
||
|
}
|
||
|
return 0;
|
||
|
}
|