7. แถวลำดับ

The Camtasia Studio video content presented here requires JavaScript to be enabled and the latest version of the Macromedia Flash Player. If you are you using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Flash Player by downloading here.

 
รหัสที่ 7-36  โปรแกรมคำนวณดัชนีมวลกายที่รับความสูงและน้ำหนักทางบรรทัดคำสั่ง
public class BMI {
  public static void main(String[] args) {
    if (args.length < 2) {
      System.out.println("usage: java BMI height(cm) weight(kg)");
    } else {
      double h = Double.parseDouble(args[0]) / 100;
      double w = Double.parseDouble(args[1]);
      double bmi = w / (h * h);
      System.out.println("Body mass index = " + bmi);
    }
  }
}
©2009 S.Prasitjutrakul