Translate the following natural language description of a loop into a for loop:
Declare a variable namedtussof typeint, initialized to57. Then, untiltussis not equal tobreng, add3totuss.
for (int tuss = 57; tuss != breng; tuss += 3) {
...
}
Something to double-check in your solution:
tuss != breng)?Related puzzles: