c语言:猴子吃桃问题
程序员文章站
2023-11-02 18:15:04
程序:
#include
int main()
{
int day=9,x1,x2=1;
while (day>0)...
程序:
#include <stdio.h> int main() { int day=9,x1,x2=1; while (day>0) { x1=(x2+1)*2; //第1天的桃子数是第2天的桃子数加1后的2倍 x2=x1; day--; } printf ("%d\n",x1); return 0; }
输出结果:
1534
press any key to continue
上一篇: Linux任务调度(8)
下一篇: 你们被抢镜了额