標題:
遞迴函式 (三) - 計算總和
[打印本頁]
作者:
tonyh
時間:
2014-3-22 14:18
標題:
遞迴函式 (三) - 計算總和
本帖最後由 tonyh 於 2014-3-22 14:23 編輯
利用函式遞迴法, 自建 total() 函式, 分別計算
1+2+3+...+5= ?
1+2+3+...+100= ?
#include<iostream>
#include<cstdlib>
using namespace std;
int total(int);
int main()
{
cout<<"1+2+3+...+5="<<total(5)<<endl;
cout<<"1+2+3+...+100="<<total(100)<<endl;
system("pause");
return 0;
}
int total(int x)
{
if(x<=1)
return x;
else
return x+total(x-1);
}
/*
total(5)=5+total(4)
=5+4+total(3)
=5+4+3+total(2)
=5+4+3+2+total(1)
=5+4+3+2+1
*/
複製代碼
作者:
林以諾
時間:
2014-3-22 14:21
#include<iostream>
#include<cstdlib>
using namespace std;
int total(int);
int main()
{
int x;
cout<<"1+....+10= "<<total(10)<<endl;
cout<<"1+....+100= "<<total(100)<<endl;
system("pause");
return 0;
}
int total(int x)
{
if(x<=1)
return x;
else
return x+total(x-1);
}
複製代碼
作者:
鎧言
時間:
2014-3-22 14:22
#include<iostream>
#include<cstdlib>
using namespace std;
int total(int);
int main()
{
int x;
cout<<"1+2+3+...+10="<<total(10)<<endl;
cout<<"1+2+3+...+100="<<total(100)<<endl;
system("pause");
return 0;
}
int total(int x)
{
if(x<=1)
return x;
else
return x+total(x-1);
}
複製代碼
作者:
張瀚仁
時間:
2014-3-22 14:24
#include<iostream>
#include<cstdlib>
using namespace std;
int lol(int);
int main()
{
int x;
cout<<"請問要加到哪個數?";
cin>>x;
cout<<endl<<"1+2+3+...+"<<x<<"="<<lol(x)<<endl;
system("pause");
return 0;
}
int lol(int x)
{
if(x<=1)
return x;
else
return x+lol(x-1);
}
複製代碼
作者:
許逸群
時間:
2014-3-22 14:24
#include<iostream>
#include<cstdlib>
using namespace std;
int total(int);
int main()
{
int x;
cout<<"1+....+10= "<<total(10)<<endl;
cout<<"1+....+100= "<<total(100)<<endl;
system("pause");
return 0;
}
int total(int x)
{
if(x<=1)
return x;
else
return x+total(x-1);
}
複製代碼
作者:
黃崇維
時間:
2014-3-22 14:24
#include<iostream>
#include<cstdlib>
using namespace std;
int total(int);
int main()
{
cout<<"1+2+3+...+10="<<total(10)<<endl;
cout<<"1+2+3+...+100="<<total(100)<<endl;
system("pause");
return 0;
}
int total (int x)
{
if(x<=1)
return x;
else
return x+total(x-1);
}
複製代碼
作者:
劉泳鱔
時間:
2014-3-29 10:55
#include<iostream>
#include<cstdlib>
using namespace std;
int total(int);
int main()
{
cout<<"1+2+3+...+5"<<total(5)<<endl;
cout<<"1+2+3+...+100"<<total(100)<<endl;
system("pause");
return 0;
}
int total(int x)
{
if(x<=1)
return x;
else
return x+total(x-1);
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2