返回列表 發帖
  1. def compute(n):
  2.     return max(n)


  3. n=[0]*5
  4. for i in range(0,5):
  5.     n[i]=int(input())
  6. t=compute(n)
  7. print(t)
複製代碼

TOP

返回列表