falltime.java

来自「《A first book of java》by Gary J.Bronson 」· Java 代码 · 共 15 行

JAVA
15
字号
import java.text.*; // needed for formatting
public class FallTime
{
  public static void main(String[] args)
  {
    int height;  
    double time;
    DecimalFormat df = new DecimalFormat("#.00");
    height = 800;
    time = Math.sqrt(2 * height / 32.2);
    System.out.println("It will take " + df.format(time)
              + " seconds to fall " + height + " feet.");
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?