Arrays.sort(double[]) in Java

Arrays.sort(double[]): This method is available in java.util.Arrays class of Java.

Syntax:

void java.util.Arrays.sort(double[] a)

This method takes one argument of type double array as its parameter. This method sorts the specified array into ascending numerical order.

Parameters: One parameter is required for this method.

a: the array to be sorted.

Returns: NA

Exceptions: NA

Approach

Java

import java.util.Arrays;

public class Arrayssortdouble {
    public static void main(String[] args) {

        double a[] = { 12, 6, 6, 2, 4, 56, 23 };

        Arrays.sort(a);
        System.out.println(Arrays.toString(a));
    }
}

Output:

[2.0, 4.0, 6.0, 6.0, 12.0, 23.0, 56.0]


No comments:

Post a Comment