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

array find max in java

    public static void main(String[] args) {
        int [] arr = {100,200,300,50,40,-10,-50};
        int max = Integer.MIN_VALUE;
        for(int each: arr)
            if(each > max)
                max = each;
        System.out.println(max); // 300
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 max of array 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

PREVIOUS NEXT
Code Example
Java :: java instant from timestamp string 
Java :: java localtime 
Java :: java type casting 
Java :: how to find some of digits in java 
Java :: string to int 
Java :: java not equals string 
Java :: compile java 
Java :: java scan a file 
Java :: this in java 
Java :: Cause: zip END header not found 
Java :: java string length validation regex 
Java :: brew use java 11 
Java :: initialiser une arraylist 
Java :: android studio change button color programmatically 
Java :: java convert float to double 
Java :: java create new object 
Java :: java get attributes from class 
Java :: java reverse string 
Java :: java method reference 
Java :: Bad notification for startForeground: java.lang.RuntimeException: invalid channel for service notification: Notification 
Java :: input long in java 
Java :: how to remove all characters before a certain character from a string in java 
Java :: set view size android 
Java :: java string literals 
Java :: Error: Could not find or load main class javafx.controls,javafx.fxml Caused by: java.lang.ClassNotFoundException: javafx.controls,javafx.fxml 
Java :: what is transient in java 
Java :: keytool error: java.lang.Exception: Key pair not generated, alias <demo already exists 
Java :: override class java 
Java :: float java 
Java :: java how to fill an array 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =