返回列表 發帖

APCS 觀念題 10503 - 25 (易)

本帖最後由 李泳霖 於 2022-3-26 11:36 編輯

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

本帖隱藏的內容需要回復才可以瀏覽

此帖僅作者可見
Vincent

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Jian-wei Wang

TOP

此帖僅作者可見

TOP

返回列表