Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

max of an array java

public int max()
    {
        int max = elementData[0];
        for (int i = 1; i < size; i++)
        {
            if (elementData[i] > max)
            {
                max = elementData[i];
            }
        }
        return max;
    }
Comment

how to get the max value of an array java

public static double arrayMax(double[] arr) {
    double max = Double.NEGATIVE_INFINITY;

    for(double cur: arr)
        max = Math.max(max, cur);

    return max;
}
Comment

find maximum in array java

 public static void main(String[] args) {

        int[] xr = {2, 4, 1, 3, 7, 5, 6, 10, 8, 9};

        //find maximum value
        int max = xr[0];
        for (int i = 0; i < xr.length; i++) {
            if (xr[i] > max) {
                max = xr[i];
            }
        }

        //find minimum value
        int min=xr[0];
        for (int i = 0; i <xr.length ; i++) {
            if (xr[i]<min){
                min=xr[i];
            }
        }

        System.out.println("max: "+max);
        System.out.println("min: "+min);
    }
Comment

how to get the max value of an array java

import java.util.Random;

public class Main {

public static void main(String[] args) {
   int a[] = new int [100];
   Random rnd = new Random ();

    for (int i = 0; i< a.length; i++) {
        a[i] = rnd.nextInt(99-0)+0;
        System.out.println(a[i]);
    }

    int max = 0;          

    for (int i = 0; i < a.length; i++) {
        a[i] = max;


        for (int j = i+1; j<a.length; j++) {
            if (a[j] > max) {
               max = a[j];
            }

        }
    }

    System.out.println("Max element: " + max);
}
}
Comment

maximum arrays size in java

int arr[] = new int[N];// Maximum Value Of N:2,147,483,647 (max int size)
Comment

Get the maximum value from an array in Java

int[] /*OR*/ double[] /*OR*/ float[] array_of_numbers = {/*Whatever values you want*/}
/*For this example we're just using a regular integer array*/
int max = 0; /*Important to initialise the max value as ZERO*/
   for (int i = 0; i < array_of_numbers.length; i++) {
        if(array_of_numbers[i] > max) { /* So now we can make the comparison*/
            max = array_of_numbers[i];  /* If larger, make it the new maximum*/
        }
   }
   System.out.println("Maximum value in array: " + max)
Comment

what is the max size of array in java

Max_Array_size = Integer.MAX_VALUE = 2,147,483,647;
Comment

PREVIOUS NEXT
Code Example
Java :: android get string value 
Java :: combinations in java 
Java :: interface extending interface in java 
Java :: kruskal java 
Java :: color class android 
Java :: what is outer class in java 
Java :: android handler clear message queue 
Java :: how to make a text field required in android studio 
Java :: add java 8 support to pom 
Java :: How to merge two sorted arrays into a single sorted aggregate one? 
Java :: pop back stack fragment android 
Java :: maximum integer in array java 
Java :: What is the function of an IntentFilter? 
Java :: transformer un string en Biginteger java 
Java :: java require non null 
Java :: how to add main and laucher activity in android manifest 
Java :: Delete Specials Caractères from a String in java 
Java :: int[] java 
Java :: Implementing the Vector Class in java list 
Java :: Implementation of TreeMap Class in Java map 
Java :: difference between maven plugin and dependency 
Java :: how to add data into list model in android 
Java :: java file creation date 
Java :: java set font 
Java :: android alert change color 
Java :: jdk jre jvm 
Java :: Java TreeMap Example NavigableMap 
Java :: java wrapper classes 
Java :: Java Define a Functional Interface in java 
Java :: what is the max size of array in java 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =