Translate the following natural language description of a loop into a for loop:
Declare a variable namedmuof typelong, initialized too. Then, untilmuis less thanheNitci, decrementmu.
for (long mu = o; mu <= heNitci; mu--) {
...
}
Something to double-check in your solution:
mu <= heNitci)?Related puzzles: