A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© yuyucoo 中级黑马   /  2015-10-11 18:31  /  552 人查看  /  7 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?

7 个回复

正序浏览
斐波那契数列,,,,,

点评

用递归函数,,,  发表于 2015-10-12 10:40
回复 使用道具 举报
同上.....
回复 使用道具 举报
小学奥数题的即视感啊!
回复 使用道具 举报
public class Prog1{
        public static void main(String[] args){
                int n = 10;
                System.out.println("第"+n+"个月兔子总数为"+fun(n));
        }
        private static int fun(int n){
                if(n==1 || n==2)
                   return 1;
                else
                   return fun(n-1)+fun(n-2);
        }
}
回复 使用道具 举报
以前做数学题的时候 做过
回复 使用道具 举报
.....好麻烦啊  
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马