Board logo

標題: APCS_觀念題_10510_02 [打印本頁]

作者: 方浩葦    時間: 2024-12-4 20:55     標題: APCS_觀念題_10510_02

下列 switch 敘述程式碼 可以如何 以 if -else 改?
  1. switch (x)
  2. {
  3.     case 10: y = 'a';  break;
  4.     case 20:
  5.     case 30: y = 'b'; break;
  6.     default: y = 'c';
  7. }
複製代碼
(A)
if (x==10)
    y = 'a';
if (x==20 || x==30)
    y = 'b';
    y = 'c';
(B)
if (x==10)
    y = 'a';
else if (x==20 || x==30)
    y = 'b';
else
    y = 'c';
(C)
if (x==10)
    y = 'a';
if (x >=20 && x <=30)
    y = 'b';
    y = 'c';
(D)
if (x==10)
    y = 'a';
else if(x >=20 && x <=30)
    y = 'b';
else
    y == 'C';
作者: 許浩浩    時間: 2025-2-14 20:51

  1. (B)
  2. if (x==10)
  3.     y = 'a';
  4. else if (x==20 || x==30)
  5.     y = 'b';
  6. else
  7.     y = 'c';
複製代碼

作者: 郭博鈞    時間: 2025-2-15 14:28

  1. (B)
  2. if (x==10)
  3.     y = 'a';
  4. else if (x==20 || x==30)
  5.     y = 'b';
  6. else
  7.     y = 'c';
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2