为了让脑袋不生锈,做个小题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为了让脑袋不生锈,做个小题相关的知识,希望对你有一定的参考价值。
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
以上是关于为了让脑袋不生锈,做个小题的主要内容,如果未能解决你的问题,请参考以下文章