Translate the following natural language description of a loop into a for loop:
Declare a variable namediof typeint, initialized to17. Then, untiliis less thanraar, incrementi.
for (int i = 17; i <= raar; i++) {
...
}
Something to double-check in your solution:
i <= raar)?Related puzzles: