Board logo

標題: 406 指標 [打印本頁]

作者: 李泳霖    時間: 2022-6-2 17:23     標題: 406 指標

本帖最後由 李泳霖 於 2022-6-2 17:27 編輯

設計說明:

1. 修改程式碼片段中的程式語法、邏輯上的錯誤,執行結果如範例圖。

[attach]13184[/attach]
  1. #include <stdio.h>
  2. #include <stdlib.h>

  3. void change(int *, int *);

  4. int main ( )
  5. {
  6.         int i=100, j=200;
  7.         printf("交換前i與j的值: \n");
  8.         printf("i=%d, j=%d\n", i, j);
  9.        
  10.         change(i, j);
  11.         printf("交換後i與j的值: \n");
  12.         printf("i=%d, j=%d\n", i, j);
  13.        
  14.         system("PAUSE");
  15.         return 0;
  16. }

  17. void change(int *x, int *y)
  18. {
  19.              int temp;
  20.              temp=x;
  21.              x=y;
  22.              y=temp;
  23. }
複製代碼

作者: 李泳霖    時間: 2022-6-2 17:23

此帖僅作者可見
作者: 鄭程富    時間: 2022-6-2 17:33

此帖僅作者可見




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