Consider the following code:
A while (B) { C } D E F
Assume the body of the loop executes 0 times. Write out the the order in which the statements will execute.
Assume the body of the loop executes 2 times. Write out the the order in which the statements will execute.
Order:
A D E F
Order:
A B C B C D E F
Translate the following natural language description of a loop into a for loop:
Declare a variable namedteof typeint, initialized toe. Then, untilteis less than or equal toimien, incrementte.
for (int te = e; te < imien; te++) {
...
}
Something to double-check in your solution:
te < imien)?Translate the following while loop into a for loop:
int ston = mi;
while (ston >= isDu) {
ston++;
besh(ston);
}
for (int ston = mi; ston >= isDu; ston++) {
besh(ston);
}
Related puzzles: