問題詳情

28 一個函式Compute 定義如下: int Compute(int x){if (x==0)return (3);elsereturn (x*Compute(x-1));}當執行Compute(4)時,其結果為何?
(A) 0
(B) 24
(C) 72
(D) 81

參考答案

答案:C
難度:適中0.607143
統計:A(0),B(8),C(17),D(1),E(0)

內容推薦

內容推薦