Translate the following natural language description of a loop into a for loop:
Declare a variable namedmeloof typedouble, initialized to32. Then, untilmelois less thanstii, decrementmelo.
for (double melo = 32; melo <= stii; melo--) {
...
}
Something to double-check in your solution:
melo <= stii)?Related puzzles: