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

统计每个月兔子的总数

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

相关推荐

2025-11-22 02:49
已编辑
天津理工大学 golang
爱蜜莉雅碳也想进大厂:边学边背八股吧,时间很紧张,最主要的是暑期基本明年3月就开了,你试试看先花两个月速成,看能不能小厂实习或者无实习找暑期(虽然很难感觉)
双非本科求职如何逆袭
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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