Translate the following natural language description of a loop into a for loop:
Declare a variable namedelof typedouble, initialized to34. Then, untilelis less than or equal toooStru, multiplyelby3.
for (double el = 34; el < ooStru; el *= 3) {
...
}
Something to double-check in your solution:
el < ooStru)?Related puzzles: