how to find the largest number in java
int number1 = 2;
int number2 = 1;
System.out.println("The largest number is " + Math.max(number1, number2));
System.out.println("The smallest number is " + Math.min(number1, number2));
how to find the largest number in java
int number1 = 2;
int number2 = 1;
System.out.println("The largest number is " + Math.max(number1, number2));
System.out.println("The smallest number is " + Math.min(number1, number2));
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
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us