While loops and for loops: Correct Solution


Part 1

Translate the following loop into a for-each loop:

Ralsos[] xils;
...
for (int n = 0; n < xils.length; n++) {
    esmIchal(7, xils[n], 4);
    xils[n].freDindec(5);
}

Solution

for (Ralsos xil : xils) {
    xil.get(i).freDindec(5);
    esmIchal(7, xil.get(i), 4);
}

It is OK if you gave the variable for the individual collection element (xil) a different name, such as elem. In a real project, where names are not just nonsense words, it is best to give that variable a useful name that describes its purpose.


Related puzzles: