Board logo

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

作者: 方浩葦    時間: 2024-9-6 19:00     標題: APCS_觀念題_10503_2

給定一陣列 a[10]={ 1, 3, 9, 2, 5, 8, 4, 9, 6, 7 },
i.e., a[0]=1,a[1]=3, …,a[8]=6, a[9]=7,
以 f(a, 10)呼叫執行右側函式後,回傳值為何?
  1. int f (int a[], int n) {
  2.      int index = 0;
  3.      for (int i=1; i<=n-1; i=i+1)
  4.     {
  5.           if (a[i] >= a[index])
  6.          {
  7.               index = i;
  8.          }
  9.     }
  10.      return index;
  11. }
複製代碼
(A)        1
(B)        2
(C)        7
(D)        9




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