欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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