Translate the following natural language description of a loop into a for loop:
Declare a variable namedeof typeshort, initialized to27. Then, untileis less thansoSa, decremente.
for (short e = 27; e <= soSa; e--) {
...
}
Something to double-check in your solution:
e <= soSa)?Related puzzles: