CJCoding With Joseph

Print Even-Indexed Elements

The array {10, 20, 30, 40, 50, 60} is given. Print only the elements at even indices (0, 2, 4, ...), each on its own line:

10
30
50

This is about the index being even, not the value. Advance your loop by 2 each step.

Expected Output:

10
30
50
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.