Exercise:Make the loop start counting from 5. Count up to (including) 50, and count only every fifth number. Hint: Change parameter1 to i = 5, change parameter2 to i <= 50, change parameter3 to i = i + 5. |
Edit This Code:
Result:
|
Correct Code:
Correct Result:
|