โ Back to Arrays
Question 240
Index of the Maximum
Index of the Maximum
An int array is given. Print the index (position, starting from 0) of the largest element.
For the array {4, 9, 15, 2, 8} the largest value 15 is at index 2, so the program prints:
2Expected Output:
2
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.