第十五周 專案二 閱讀程式(2 1)

2021-06-27 10:40:43 字數 739 閱讀 2484

問題及**:

/*

* 檔名稱:project4.cpp

* 作 者:李楠

* 完成日期:2023年12月4日

* 版 本 號:v1.0

** 輸入描述: 略

* 程式輸出: 略

*/#include using namespace std;

int sub(int*);

int main()

{ int i, k;

for (i=0; i<4; i++)

{k=sub(&i);

cout<

執行結果:

知識點總結:

要注意 t 是 int 型的並且前面有static !!!

第一次 i=0,t=0,所以*s=i=0,t=0+0=0,返回後顯示sum=0;

第二次 i=1,t=0,所以*s=i=1,t=1+0=1,返回後顯示sum=1;

第三次 i=2,t=1,所以*s=i=2,t=2+1=3,返回後顯示sum=3;

第四次 i=3,t=3,所以*s=i=3,t=3+3=6,返回後顯示sum=6;

學習心得:

把握好老師講的那種方法再注意一些細節就能很好地閱讀程式,做好這個專案。

學習心得:

第十五周專案二閱讀程式(1)

問題及 檔名稱 test.cpp 作 者 郝俊宇 完成日期 2014年 12 月 4 日 版 本 號 v1.0 問題描述 閱讀下面的程式,先寫出其執行結果,再執行對比。支招1 按課堂上老師講課的方式,將變數對應記憶體的 框子 畫出來,用大腦當cpu,寫出變數的變化過程 支招2 單步執行程式,在監視 ...

第十五周專案 閱讀程式2

all right reserved.檔名稱 test.cpp 完成日期 2016年6月21日 版本號 v1.0 問題描述 閱讀程式 程式輸入 程式輸出 include include include using namespace std class cstudent cstudent int n...

第十五周 閱讀程式(1)

檔名稱 test.cpp 作 者 呼亞萍 完成日期 2015年6月15日 版 本 號 v1.0 程式輸入 相應的程式 程式輸出 對應得結果 include include include using namespace std int main int a ofstream outfile f1.d...