Python 練習題-TQC+(510)-費氏數列 ... def compute(n): if n < 2: return n else: return compute(n-1)+compute(n-2) #某一項數字是其前兩項的和 num ...
確定! 回上一頁