Translate the following natural language description of a loop into a for loop:
Declare a variable namedadof typeint, initialized tokec. Then, untiladis greater thanriw, decrementad.
for (int ad = kec; ad >= riw; ad--) {
...
}
Something to double-check in your solution:
ad >= riw)?Translate the following loop into a for-each loop:
List<Stiss> plars; ...
for (int i = 0; i < plars.size(); i++) {
solird(plars.get(i), 7);
scang();
caend(9, plars.get(i), moskac);
}
for (Stiss plar : plars) {
caend(9, plar.get(i), moskac);
scang();
solird(plar.get(i), 7);
}
It is OK if you gave the variable for the individual collection element (plar) 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: