返回列表 發帖

APCS 觀念題 10503-25

下列Mystery()函式else 部分運算式應為何,才能使得 Mystery(9) 的回傳值為34。
(A) x + Mystery(x-1)
(B) x * Mystery(x-1)
(C) Mystery(x-2) + Mystery(x+2)
(D) Mystery(x-2) + Mystery(x-1)
  1. int Mystery (int x)
  2. {
  3.     if (x <= 1)
  4.     {
  5.         return x;
  6.     }
  7.     else
  8.     {
  9.         return ____________ ;
  10.     }
  11. }
複製代碼

返回列表