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

递归算法——农夫养牛

时间:2014-07-15 00:58:00      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   算法   div   

 1 /**
 2  * Created by Administrator on 14-5-13.
 3  * 一个农夫养了一头牛,三年后,这头牛每年会生出1头牛,
 4  * 生出来的牛三年后,又可以每年生出一头牛……问农夫10年后有多少头牛?n年呢?
 5  */
 6 public class NewCow {
 7     public static void main(String[] args){
 8         for(int i=1;i<30;i++)
 9         {
10             System.out.print(i+"年后有牛:");
11             System.out.println(countCow(i));
12         }
13     }
14     public static int  countCow(int temp){
15         if(temp<=2)
16             return 1;
17         if(temp==3)
18             return 2;
19         else
20             return countCow(temp-1)+countCow(temp-3);
21     }
22 }

 

递归算法——农夫养牛,布布扣,bubuko.com

递归算法——农夫养牛

标签:style   blog   color   for   算法   div   

原文地址:http://www.cnblogs.com/mingcaoyouxin/p/3842119.html

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