CJCoding With Joseph

Print Array Elements in Reverse

The array {1, 2, 3, 4, 5} is given. Print each element on its own line, from the last element down to the first:

5
4
3
2
1

Use a loop that counts downward. Do not modify the array.

Expected Output:

5
4
3
2
1
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.