码迷,mamicode.com
首页 > 其他好文 > 详细

为了让脑袋不生锈,做个小题

时间:2016-03-20 18:10:36      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:米高

T:一个球从 100 米高的自由落下,每次落地后反跳回原高度的一半,再落下,再反弹。求第

10次落地时,共经过多少米,第 10 次反弹多高。

#include <stdio.h>

int main()
{
	double high = 100.0;
	double total = 0.0;
	int n = 10;
	int i = 0;
	total += high;

	for (i = 0; i < 9; i++)
	{
		high /= 2;
		total += high * 2;
	}
	printf("total = %lf\n", total);
	printf("high = %lf\n", high / 2);
	system("pause");
	return 0;
}


本文出自 “sunshine225” 博客,请务必保留此出处http://10707460.blog.51cto.com/10697460/1753152

为了让脑袋不生锈,做个小题

标签:米高

原文地址:http://10707460.blog.51cto.com/10697460/1753152

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!