用Java编写程序:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问第n个月的兔子总数为多少对?
时间: 2023-12-21 09:03:07 浏览: 70
c代码-有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?(输出前40个月即可)
以下是用Java编写的程序,用于计算第n个月的兔子总数:
```java
import java.util.Scanner;
public class Fibonacci {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in); System.out.print("请输入要计算的月份:");
int n = scanner.nextInt();
int result = fibonacci(n);
System.out.println("第" + n + "个月的兔子总数为:" + result + "对");
}
public static int fibonacci(int n) {
if (n <= 2) {
return 1;
}
int a = 1;
int b = 1;
int result = 0;
for (int i = 3; i <= n; i++) {
result = a + b;
a = b;
b = result;
}
return result;
}
}
```
阅读全文