Board logo

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

作者: tonyh    時間: 2016-2-26 20:25     標題: [隨堂測驗] 遞迴函式 (二) - 計算總和


請同學們用函式遞迴法接著完成第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. }
複製代碼

作者: 梁和雋    時間: 2016-2-26 20:32

此帖僅作者可見
作者: 李知易    時間: 2016-2-26 20:35

此帖僅作者可見
作者: 洪振庭    時間: 2016-2-26 20:36

此帖僅作者可見




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