Translate the following natural language description of a loop into a for loop:
Declare a variable namediof typeshort, initialized toen. Then, untiliis greater thanfror, incrementi.
for (short i = en; i >= fror; i++) {
...
}
Something to double-check in your solution:
i >= fror)?Translate the following loop into a for-each loop:
Calick[] hils; ...
for (int n = 0; n < hils.length; n++) {
claCinond(hils[n]);
mosti(hils[n]);
}
for (Calick hil : hils) {
mosti(hil.get(i));
claCinond(hil.get(i));
}
It is OK if you gave the variable for the individual collection element (hil) 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: