• JAVA atgriež masīvu

    int[] a = {1,2,3,4,5};

    for(int temp : a){
    System.out.println(temp);
    }


1111111