fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. /* Name of the class has to be "Main" only if the class is public. */
  4. class Ideone
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. int[] a = {1, 2, 3, 4};
  9. for (int i = 0; i < a.length; ++i) {
  10. System.out.print(i + " ");
  11. }
  12. }
  13. }
Success #stdin #stdout 0.11s 48040KB
stdin
Standard input is empty
stdout
0 1 2 3