public static void main(String[] args) {
int weight = Integer.parseInt(args[0]);
int hight = Integer.parseInt(args[1]);
double bmi = ((weight*1.0) / (hight*hight)*10000) ;
System.out.println(bmi);
}
我在學校測試,專案屬性參數我打"72 160" 會得到數值 28.125
為什麼在家同樣程式 為什麼出現
run:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0
at javaapplication16.Main.main(Main.java:20)
Java Result: 1
成功建置 (總時間:0 秒)
到底是哪邊出錯??
學校6.5版,我的6.7版
(打bmi的程式)