Board logo

標題: APCS 觀念題 10510 模擬考 11 [打印本頁]

作者: 李泳霖    時間: 2023-6-4 13:19     標題: APCS 觀念題 10510 模擬考 11

下列程式片段執行後,count 的值為何?
  1. int maze[5][5]= { {1, 1, 1, 1, 1},
  2.                   {1, 0, 1, 0, 1},
  3.                   {1, 1, 0, 0, 1},
  4.                   {1, 0, 0, 1, 1},
  5.                   {1, 1, 1, 1, 1} };
  6. int count=0;
  7. for (int i=1; i<=2; i=i+1) {
  8.     for (int j=1; j<=2; j=j+1) {
  9.         int dir[3][2] = {{-1,0}, {0,1}, {1,0}};
  10.         for (int d=0; d<3; d=d+1) {
  11.             if (maze[i+dir[d][0]][j+dir[d][1]]==1)
  12.             {
  13.                 count = count + 1;
  14.             }
  15.         }
  16.     }
  17. }
複製代碼
本帖隱藏的內容需要回復才可以瀏覽

作者: 東緯    時間: 2023-6-4 14:12

此帖僅作者可見




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