Answers for "very easy proram to find the largest number in the array using java"

0

java function that returns the index of the largest value in an array

public int getIndexOfLargest( int[] array )
{
  if ( array == null || array.length == 0 ) return -1; // null or empty

  int largest = 0;
  for ( int i = 1; i < array.length; i++ )
  {
      if ( array[i] > array[largest] ) largest = i;
  }
  return largest; // position of the first largest found
}
Posted by: Guest on December-27-2019

Code answers related to "very easy proram to find the largest number in the array using java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language