fork download
  1. import java.io.*;
  2. class ex
  3. {
  4. public static void main(String args[])
  5. {
  6. int a[]={20,30};
  7. int b=a[4]/2;
  8. System.out.println(b);
  9. }
  10. }
Runtime error #stdin #stdout #stderr 0.04s 4386816KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 4
	at ex.main(Main.java:7)