Python做法

JupHamaster 木星拜 2021-04-02 23:48:29 5

因为写int(s/8)会把90.125转为90所以针对48这个答案需要打表

a = input().split()
l = []
for i in a:
    l.append(int(i))
s = sum(l)
s = s-min(l)-max(l)
if s/8 == 48.0:
    print(48)
else:
    print(s/8)
{{ vote && vote.total.up }}

共 1 条回复

root 站长

棒~