标签:
假设一个球从任意高度自由落下,每次落地后反跳回原高度的一半; 再落下, 求它在第5次落地时,共经历多少米?第5次反弹多高?
/**
* 统计出第5次落地时,共经过多少米?
*
* @param high 球的起始高度
* @return 英文字母的个数
*/
public static double getJourney(int high)
{
return 0;
}
/**
* 统计出第5次反弹多高?
*
* @param high 球的起始高度
* @return 空格的个数
*/
public static double getTenthHigh(int high)
{
return 0;
}
输入起始高度,int型
分别输出第5次落地时,共经过多少米第5次反弹多高
1
2.875
0.03125
<span style="font-size:18px;">import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner scan=new Scanner(System.in);
while(scan.hasNext())
{
int high=scan.nextInt();
double distance=0;
double height=0;
distance=high*(2+0.5+0.25+0.125);
height=high*0.03125;
System.out.println(distance);
System.out.println(height);
}
}
}</span>
标签:
原文地址:http://blog.csdn.net/tingzhiyi/article/details/52200496