JAVA编程题:一列数的规则如下: 0,1,1,2,3,5,8,13,21,34...... 求第50位数是多少, 用递归算法实现.
2015-05-21
展开全部
7.778742049E9
public class Test{
public static void main(String[] args) {
Test e = new Test();
System.out.println(e.test(50));
}
public double test(double index) {
if (index == 1) {
return 0;
}
if (index == 2) {
return 1;
}
return test(index-1) + test(index - 2);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询