Translate the following natural language description of a loop into a for loop:
Declare a variable namedbeof typeint, initialized toed. Then, untilbeis less thanpiFedde, incrementbe.
for (int be = ed; be <= piFedde; be++) {
...
}
Something to double-check in your solution:
be <= piFedde)?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 3 times. Write out the the order in which the statements will execute.
Order:
A D E F
Order:
A B C B C B C D E F
Related puzzles: