Height Half Values
Posted Heavy_dream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Height Half Values相关的知识,希望对你有一定的参考价值。
public class HeightDemo {
/**
* 题目:一球从100米高度自由落下,每次落地后反跳回原高度的一半;
* 再落下,求它在第10次落地时,共经过多少米?第10次反弹多高?
*/
public static void main(String[] args) {
double h = 100;
double total = 0;
for (int i = 0; i < 10; i++) {
if (i == 0) {
total = total + h;
} else {
h = h / 2;
total = total + 2 * h;
}
}
System.out.println("total=" + total);
System.out.println("h=" + h);
}
}
以上是关于Height Half Values的主要内容,如果未能解决你的问题,请参考以下文章
数据可视化应用绘制half-half plots图(附R语言代码)
HDU 1592 Half of and a Half(大数)