Translate the following natural language description of a loop into a for loop:
Declare a variable namedceuof typeshort, initialized to7. Then, untilceuis not equal toomLerwe, divideceuby4.
for (short ceu = 7; ceu != omLerwe; ceu /= 4) {
...
}
Something to double-check in your solution:
ceu != omLerwe)?Related puzzles: