我爱编程C语言

day15

2018-06-25  本文已影响4人  今生何求惟你

题目:猴子吃桃问题:猴子第一天摘下若干个桃子,当即吃了一半,还不瘾,又多吃了一个第二天早上又将剩下的桃子吃掉一半,又多吃了一个。以后每天早上都吃了前一天剩下的一半零一个。到第10天早上想再吃时,见只剩下一个桃子了。求第一天共摘了多少?

程序一:

#include <stdio.h>

main()

{

int a,b;

b = 1;

for(a = 9;a >= 1;a--)

{

b = (b+1) * 2;

}

printf("The number of peach is %d.\n",b);

return 0;

}

程序二:

#include <stdio.h>

main()

{

int day,x1,x2;

day=9;

x2=1;

while(day>0)

{

x1=(x2+1)*2;/*第一天的桃子数是第2天桃子数加1后的2倍*/

x2=x1;

day--;

}

printf("the total is %d\n",x1);

}

输出样例:

day15

上一篇下一篇

猜你喜欢

热点阅读