题解 | 公务员面试
公务员面试
https://www.nowcoder.com/practice/f3a134908d5b41869f14f58307008a97
while True:
try:
l = list(map(int,input().split()))
l.remove(max(l))
l.remove(min(l))
s = 0
for i in l:
s = s + i
p = s / 5
print(f'{p:.2f}')
except EOFError:
break
