Translate the following natural language description of a loop into a for loop:
Declare a variable namedmuof typelong, initialized toa. Then, untilmuis greater thanedeng, subtract2frommu.
for (long mu = a; mu >= edeng; mu -= 2) {
...
}
Something to double-check in your solution:
mu >= edeng)?Related puzzles: