黑马程序员技术交流社区
标题:
递归调用
[打印本页]
作者:
xiecong
时间:
2015-8-6 22:52
标题:
递归调用
/*
fun(i)=fun(i-1)+fun(i-2)
*/
class Prog1
{
public static void main(String[] args)
{
int i=10;
System.out.println(fun(i));
}
public static int fun(int n)
{
if(n==1|n==2)
return 1;
else return fun(n-1)+fun(n-2);
}
}
作者:
江州刺史
时间:
2015-8-6 23:03
递归是我的硬伤!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2