猴子吃桃子编程题答案c语言
时间: 2023-11-25 21:49:10 浏览: 527
以下是猴子吃桃子编程题的C语言答案:
```c
#include <stdio.h>
#include <stdlib.h>
int total_peach(int rest) {
return (rest + 1) * 2;
}
int main() {
int peach = 0; // 桃子总数
int rest = 1; // 第10天只剩一个桃子
int day = 9;
while(day--) {
peach = total_peach(rest); // 递归实现
rest = peach;
}
printf("猴子第一天一共摘了%d个桃子\n", peach);
system("pause");
return 0;
}
```
阅读全文