有一对兔子,从出生后第 3 个月起每个月都生一对兔子,小兔子长到第三个月 后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?用c语言代码表示结果
时间: 2023-10-16 08:46:43 浏览: 162
python 计算每个月的兔子总数为多少?(示例)
下面是用 C 语言编写的代码,计算每个月的兔子总数:
```c
#include <stdio.h>
int main() {
int n, first = 1, second = 1, total;
printf("请输入月份 n:");
scanf("%d", &n);
printf("第1个月:%d对兔子\n", first);
printf("第2个月:%d对兔子\n", second);
for (int i = 3; i <= n; i++) {
total = first + second;
printf("第%d个月:%d对兔子\n", i, total);
first = second;
second = total;
}
return 0;
}
```
你可以运行这段代码,并输入月份 n,程序将输出每个月的兔子总数。
阅读全文