一个球从100m高度自由落下,每次落地后反跳回原高度的 一半,再落下,再反弹。求它在第10次落地时,共经过多少米,第10次反弹多高。
程序代码:#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
double i,s=0,x=100,y;
for(i=1;i<=10;i++)
{
y=x/2;
s=s+x+y;
x=y;
}
s=s+y;
printf("共经过:%lf米\n",s);
printf("第十次反弹:%lf米\n",y);
return 0;
}