黑马程序员技术交流社区
标题:
关于递归求等比数列
[打印本页]
作者:
忘言
时间:
2015-4-21 12:16
标题:
关于递归求等比数列
首项为一,等比为2
#include<iostream>
using namespace std;
int series(int n)
{
return n==1?1:2*series(n-1);
}
int main ()
{
int n,a;
cout<<"please input the n==? /n"<<endl;
cin>>n;
a=series(n);
cout<<"a("<<n<<")="<<a<<endl;
return(0);
}
#include<stdio.h>
int series(int n)
{
return n==1?1:2*series(n-1);
}
int main ()
{
int n,a;
printf("please input the n==? /n") ;
scanf("%d",&n);
a=series(n);
printf("a(%d)=%d /n",n,a);
return(0);
}
作者:
itheima_llt
时间:
2015-4-21 19:38
谢谢楼主,楼主太好人了
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2