兔子的个数-java

兔子的个数

古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三 个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少? 规律 1 1 2 3 5 813

public class FirstRabbit {
    public static void main(String[] args) {
        Scanner inputScanner = new Scanner(System.in);
        long f, f1 = 1l, f2 = 1l;
        System.out.println("请输入你要查询你个月的情况");
        int month = inputScanner.nextInt();
        for (int i = 3; i <= month; i++) {
            f = f2;
            f2 = f1 + f2;
            f1 = f;
            System.out.println("第" + i + "个月有" + f2 + "只兔子");
        }
    }
}

你可能感兴趣的:(java)