網站聲明

本網站包含了各式各樣的資源,如果有侵占到您的著作權,請與本人通知,本人會立即改進。本站所有發表僅屬研究討論性質,如果有任何後果請自行負責。

2014-05-15

TQC+ C 選擇敘述與迴圈 209

209.
設計說明:

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


參考程式碼:
做法1:
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main ()
  4. {
  5.  int i=1, total=0;//total初始值為0
  6.  do {
  7.   if(i%2==1)//設定條件,如果為奇數,則進入加總
  8.    total += i;
  9.   i++;//因為i從1開始,所以要先加到total,再做i++,否則會少1
  10.  } while (i<=100);//do-while後面要加分號
  11.  printf("1到100的奇數和: %d\n", total);
  12.  system("PAUSE");
  13.  return 0;
  14. }
做法2:
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main ()
  4. {
  5.  int i=1, total=0;//total初始值為0
  6.  do {
  7.   total += i;
  8.   i+=2;//因為i從1開始,所以要先加到total,再做i+=2,否則會少1,每次回圈i+2
  9.  } while (i<=100);//do-while後面要加分號
  10.  printf("1到100的奇數和: %d\n", total);
  11.  system("PAUSE");
  12.  return 0;
  13. }

TQC+ C 試題總整理

聲明:

這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血

沒有留言:

張貼留言

歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com