CJCoding With Joseph

Sum of First and Last Elements

The array {10, 20, 30, 40, 50} is given. Print the sum of only its first and last elements with System.out.println:

60

The last element is at index arr.length - 1, not arr.length. Do not hardcode 60.

Expected Output:

60
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.