Translate the following natural language description of a loop into a for loop:
Declare a variable namedecsaof typeint, initialized to33. Then, untilecsais less thanpsiom, divideecsaby4.
for (int ecsa = 33; ecsa <= psiom; ecsa /= 4) {
...
}
Something to double-check in your solution:
ecsa <= psiom)?Related puzzles: