Translate the following natural language description of a loop into a for loop:
Declare a variable namedjengof typelong, initialized to85. Then, untiljengis greater than or equal tosest, decrementjeng.
for (long jeng = 85; jeng > sest; jeng--) {
...
}
Something to double-check in your solution:
jeng > sest)?Related puzzles: