下列 Python 程式的填空處為何,才能使得 f(14)的回傳值為 40 ? def f(n): if n < 4: return n else: return ______ (A) n * f(n – 1) (B) n + f(n – 3) (C) n – f(n ...
確定! 回上一頁