JAVA
java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
public class Program
{
public static void main(String[] args) {
String[] my_array = {"test" , "these", "arrays", "at sololearn"};
for(int i=0;i<my_array.length-3;i++) {
String first = my_array[i];
String second = my_array[i+1];
String third = my_array[i+2];
String fourth = my_array[i+3];
System.out.println("FIRST ELEMENT: " + first);
System.out.println("SECOND ELEMENT: " + second);
System.out.println("THIRD ELEMENT: " + third);
System.out.println("FOURTH ELEMENT: " + fourth);
}
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run