Javaを起動したばかりで、このコードでこのエラーが発生しますが、これは機能するはずです..
エラー :
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0
at Distance2.main(Distance2.java:8)
コード:
import java.io.*;
public class Distance2 {
public static void main(String args[]){
int v1 = Integer.parseInt( args[0] );
int v2 = Integer.parseInt( args[1] );
System.out.println(Math.abs(v1 - v2));
}
}