posted @ 2019-08-21 22:38
万金流
阅读(373)
推荐(0)
编辑
posted @ 2019-08-21 22:31
万金流
阅读(176)
推荐(0)
编辑
摘要:
1 using namespace std; 2 int gys(int x,int y)//用递归求最大公约数 3 { 4 if(y==0) 5 { 6 return x; 7 } 8 else 9 { 10 return gys(y,x%y); 11 } 12 } 13 main() 14 { 15 int a,b; 16 cin>>a>>b; 17 cout<<gys(a,b); 18 }
阅读全文
posted @ 2019-08-21 22:23
万金流
阅读(677)
推荐(0)
编辑
摘要:
#include using namespace std; void zrs(int n)//用递归求自然数(n和它之前) { if(n==1) { cout>a; zrs(a); }
阅读全文
posted @ 2019-08-21 22:19
万金流
阅读(255)
推荐(0)
编辑
摘要:
#include <iostream> using namespace std; int jia(int n)//用递归求自然数累加(1+2+...+n) { if(n==1) { return 1; } else { return n+jia(n-1); } } main() { int a; cin>>a; cout<<jia(a); }
阅读全文
posted @ 2019-08-21 22:15
万金流
阅读(358)
推荐(0)
编辑
摘要:
1 #include <iostream> 2 using namespace std; 3 int f(int n)//递归f数列的第n项 4 { 5 int x=0,y=1,z; 6 if(n==1||n==2) 7 { 8 return n-1; 9 } 10 else 11 { 12 return f(n-1)+f(n-2); 13 } 14 } 15 main() 16 { 17 int
阅读全文
posted @ 2019-08-21 22:09
万金流
阅读(893)
推荐(0)
编辑