返回列表 發帖
def compute(n):
    return max(n)
  
n=[0,0,0,0,0,0]

for i in range(5):
    n[i]=int(input())
t=compute(n)
print(t)

TOP

返回列表