โ Back to Arrays
Question 378
Sum of First and Last Elements
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 withSystem.out.println: 60 The last element is at indexarr.length - 1, notarr.length. Do not hardcode60.
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.