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

统计每个月兔子的总数

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;
        }
    }
}
笨办法效率很低面向对象思想。。。。
全部评论

相关推荐

不愿透露姓名的神秘牛友
06-30 18:19
个个985的硕士闭着眼睛都有15k以上的月薪,天天嚷嚷着研究生白度读了,天天嚷嚷着反向读研了........
MMMJC:不读研22本科出去的基本都拿28k呢,你不能用25的研究生和25的本科生比然后说没反向读研,而是25研和22本比呀
点赞 评论 收藏
分享
点赞 评论 收藏
分享
06-20 19:40
中原工学院 Java
网络存储:十几天不会让你拉人办卡就结束了吧?
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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