Translate the following natural language description of a loop into a for loop:
Declare a variable namedplaoof typeint, initialized tomu. Then, untilplaois greater than or equal tooss, incrementplao.
for (int plao = mu; plao > oss; plao++) {
...
}
Something to double-check in your solution:
plao > oss)?Related puzzles: