<pre name="code" class="java">/*
一球从100米的高度自由落下,每次落地后反跳回原高度的一半,再落下。
求它在第10次落地时,共经过多少米?第10次反弹多高?
*/
import java.io.*;
class Demo
{
private Demo(){}
private static Demo instance = new Demo();
public void getResults(int n)
{
final double H = 100;
double sum = H;
//h 是此次弹起了的高度
double h = H/2;
//从第2次开始进入循环,第1次直接输出初始化值。
for(int i = 2; i <= n ; i++)
{
//当前弹起了的高度*2 +上一次的sum就是本次一共经过的路程。
sum = sum + h*2;
//h 的值变成了下一次能弹起来的高度
h = h/2;
}
System.out.println(n+"次撞地时走过的路程:"+sum+"\n"+n+"次撞地后能弹起来的高度:"+h);
}
public static Demo getInstance()
{
return instance;
}
}
class MainClass
{
public static void main(String[] args) throws Exception
{
Demo d = Demo.getInstance();
BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
String reg = "[1-9]+\\d*";
String str = null;
int n = 0;
System.out.println("输入一个1到N的数字:");
for(str = buf.readLine().trim();true; str = buf.readLine().trim())
{
if(str.isEmpty() == true)
continue;
if(str.equals("quit") == true)
System.exit(0);
if(str.matches(reg) == true)
{
n = Integer.parseInt(str);
d.getResults(n);
}
else
{
System.out.println("非法数字!输入一个1到N的数字:");
}
}
}
}
/*
*/
java50题----10小球落地
最新推荐文章于 2023-02-07 01:56:15 发布