โ Back to Arrays
Question 309
Print Elements at Even Indices
Print Elements at Even Indices
The array{10, 20, 30, 40, 50, 60}is given. Print only the elements at even indices (0,2,4, ...) separated by single spaces: 10 30 50 Those are the values at index0,2, and4. There is no trailing space.
Expected Output:
10 30 50
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.