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

  3.    
  4. n=[0]*5
  5. for i in range(5):
  6.     n[i]=int(input())

  7. t=compute(n)
  8. print(t)   
複製代碼
回復 1# 鄭繼威

TOP

返回列表