CJCoding With Joseph

Print Array Elements with Index

The array {5, 10, 15} is given. Print every element next to its index, one per line, in the form index: value:

0: 5
1: 10
2: 15

Each line, including the last, ends with a newline.

Expected Output:

0: 5
1: 10
2: 15
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.