本帖最後由 tonyh 於 2018-6-20 17:29 編輯
請同學們用函式遞迴法接著完成第15~18行之程式碼.- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int total(int);
- int main()
- {
- cout<<"1+2+3+...+5="<<total(5)<<endl;
- cout<<"1+2+3+...+101="<<total(101)<<endl;
- cout<<"1+2+3+...+257="<<total(257)<<endl;
- system("pause");
- return 0;
- }
- int total(int x)
- {
-
-
- }
複製代碼本帖隱藏的內容需要回復才可以瀏覽 |