题解 | #统计每个月兔子的总数#

统计每个月兔子的总数

https://www.nowcoder.com/practice/1221ec77125d4370833fd3ad5ba72395

import java.util.*;


public class Main {
   public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int mouth = sc.nextInt();
        ArrayList<Rb> rbList = new ArrayList<Rb>();
        for (int i = 0; i < mouth; i++) {
            if (i == 0) {
                rbList.add(new Rb(i));
                continue;
            }
            int size=  rbList.size();
            for (int j = 0; j <size ; j++) {
                if (rbList.get(j).checkAdd(i)){
                    rbList.add(new Rb(i));
                }
            }
        }
        System.out.println(rbList.size());
        sc.close();
    }

    static class Rb {
        private int birthM;

        public Rb(int birthM) {
            this.birthM = birthM;
        }

        public int getBirthM() {
            return birthM;
        }

        public void setBirthM(int birthM) {
            this.birthM = birthM;
        }

        public boolean checkAdd(int month) {
            return month - birthM >= 2;
        }
    }
}
笨办法效率很低面向对象思想。。。。
全部评论

相关推荐

肖先生~:那年秋招闯进一位少年,人们都清楚:成功对他来说只是时间问题
点赞 评论 收藏
分享
11-12 14:30
已编辑
广东科技学院 前端工程师
迷茫的小刺猬在迎接o...:前端岗位越来越少了,中小厂也更倾向全栈了,更不需要初级或者实习。可能就大厂才会有一些岗位,但是很看学历。
实习,投递多份简历没人回...
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务