Board logo

標題: [隨堂測驗] 遞迴函式 (三) - 計算總和 [打印本頁]

作者: tonyh    時間: 2014-8-30 16:50     標題: [隨堂測驗] 遞迴函式 (三) - 計算總和

本帖最後由 tonyh 於 2014-8-30 17:12 編輯

[attach]960[/attach]
請同學們用函式遞迴法接著完成第15~18行之程式碼.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int total(int);
  5. int main()
  6. {
  7.     cout<<"1+2+3+...+5="<<total(5)<<endl;
  8.     cout<<"1+2+3+...+101="<<total(101)<<endl;
  9.     cout<<"1+2+3+...+257="<<total(257)<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
  13. int total(int x)
  14. {
  15.    
  16.    


  17. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int total(int);
  5. int main()
  6. {
  7.     cout<<"1+2+3+...+5="<<total(5)<<endl;
  8.     cout<<"1+2+3+...+101="<<total(101)<<endl;
  9.     cout<<"1+2+3+...+257="<<total(257)<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
  13. int total(int x)
  14. {
  15.     if(x==1)
  16.         return x;
  17.     else
  18.         return x+total(x-1);
  19. }
  20. /*
  21.     total(5)=5+total(4)
  22.             =5+4+total(3)
  23.             =5+4+3+total(2)
  24.             =5+4+3+2+total(1)
  25.             =5+4+3+2+1
  26. */
複製代碼

作者: 張峻瑋    時間: 2014-8-30 16:55

此帖僅作者可見
作者: 劉得恩    時間: 2014-8-30 16:56

此帖僅作者可見
作者: 林宇翔    時間: 2014-8-30 16:59

此帖僅作者可見
作者: 李允軒    時間: 2014-8-30 17:00

此帖僅作者可見
作者: 張彥承    時間: 2014-8-30 17:07

此帖僅作者可見
作者: 劉得旗    時間: 2014-8-30 17:12

此帖僅作者可見
作者: 周雍程    時間: 2014-8-30 17:14

此帖僅作者可見
作者: 張郁庭    時間: 2014-9-5 19:45

此帖僅作者可見




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