码迷,mamicode.com
首页 > 其他好文 > 详细

一道数列的规律题(使用递归解决)

时间:2015-10-10 20:02:03      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

/**
* Created by Administrator on 2015/10/10.
*/
/*
* 1,1,2,3,5,8,13,21,....
* 求解第30位数是多少
* */
public class demo1 {
public static int compute(int n){
if(n==1||n==2){
return 1;
}else{
return compute(n-1)+compute(n-2);
}
}
//测试
public static void main(String[] args){
System.out.print(compute(30));
}
}

一道数列的规律题(使用递归解决)

标签:

原文地址:http://www.cnblogs.com/hujingwei/p/4868026.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!