fork download
  1. import java.lang.*;
  2. import java.io.*;
  3. class Goo
  4. {
  5. public static void main (String[] args) throws java.lang.Exception
  6. {
  7. int[] arr = new int[] { 3, 1, 4, 1, 5, 9, 2, 6, };
  8. for (int a: arr) { System.out.println(a); }
  9. }
  10. }
  11.  
Success #stdin #stdout 0.11s 320576KB
stdin
Standard input is empty
stdout
3
1
4
1
5
9
2
6