码迷,mamicode.com
首页 > 编程语言 > 详细

java 递归

时间:2016-03-26 08:10:16      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:递归

递归:自己调用自己;

/*
 * 斐波拉切数列1 1 2 3 5 8 13 21 
 * show(int )
 * show(1)= 1
 * show(2)= 1
 * show(3)= show(1)+show(2)=2
 * show(4)= show(3)+show(2)=3
 * show(5)= show(4)+show(3)=5
 * 
 * */
public class Test_递归 {

	public static int show(int i){//i=5
		if(i==1||i==2){
			return 1;
		}else{    
			return show(i-1)+show(i-2);
		}
	}
	public static void main(String[] args) {
		int show = show(300);
		System.out.println(show);
	}

}


java 递归

标签:递归

原文地址:http://flyblog.blog.51cto.com/10081495/1755391

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