fork(7) download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. int[] numbers1 = new int[4];
  13.  
  14. String[] strings = new String[4];
  15.  
  16. numbers1[0]=10;
  17. numbers1[1]=20;
  18. numbers1[2]=30;
  19.  
  20. int[] numbers2 = {10, 20, 30, 40};
  21. int[] numbers3 = new int[]{10, 20, 30, 40};
  22. }
  23. }
Success #stdin #stdout 0.08s 380224KB
stdin
Standard input is empty
stdout
Standard output is empty