def computeHCF(x,y): if x > y: smaller = y else: smaller = x for i in range(1, smaller+1): ... 首先編寫了一個儲存許多物理常數的python程式(constants.py)。
確定! 回上一頁