返回列表 發帖
  1. def compute(n):
  2.     return max()   
  3. n=[0,0,0,0,0]
  4. for i in range(5):
  5.     n[i]=int(input())
  6. t=compute(n)
  7. print(t)            
複製代碼

TOP

返回列表