Translate the following natural language description of a loop into a for loop:
Declare a variable namedcuseof typedouble, initialized to98. Then, untilcuseis greater thanzuZaumi, incrementcuse.
for (double cuse = 98; cuse >= zuZaumi; cuse++) {
...
}
Something to double-check in your solution:
cuse >= zuZaumi)?Related puzzles: