Translate the following natural language description of a loop into a for loop:
Declare a variable nameduweof typelong, initialized to67. Then, untiluweis less than or equal toudCu, decrementuwe.
for (long uwe = 67; uwe < udCu; uwe--) {
...
}
Something to double-check in your solution:
uwe < udCu)?Related puzzles: