題目描述
假設一個球從任意高度自由落下,每次落地後反跳回原高度的一半; 再落下, 求它在第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
算法實現
import java.util.Scanner;
/**
* All Rights Reserved !!!
*/
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Scanner scanner = new Scanner(Main.class.getClassLoader().getResourceAsStream("data.txt"));
while (scanner.hasNext()) {
double h = scanner.nextDouble();
System.out.printf("%g\n", getJourney(h));
System.out.printf("%g\n", getTenthHigh(h));
}
scanner.close();
}
private static double getTenthHigh(double h) {
return h / 32;
}
private static double getJourney(double h) {
double up = (Math.pow(0.5, 4) - 1) / (0.5 - 1);
double down = (Math.pow(0.5, 5) - 1) / (0.5 - 1);
return h * 0.5 * up + h * down;
}
}