Signup/Sign In

Java Double max() Method

Java max() method is a part of the Double class of the java.lang package. This method returns the same result as by the Math.max() method of the Math class. This method is used to return the numerically greater value(maximum value) of the two numbers passed as arguments.

If a positive and a negative number is passed then the positive value is returned but if both the numbers passed are negative then a lower magnitude value is returned.

Syntax:

public static double max(double a, double b)  

Parameters:

The parameters passed are the double values by the user to check for the maximum of the two numbers passed.

Returns:

The numerically greater value out of the two values passed as the parameter.

Example 1:

Here, one positive and one negative number is taken, hence the positive value is returned and in the case of both negative, the value with lower magnitude is returned.

import java.lang.Double;
public class StudyTonight 
{  
    public static void main(String[] args) 
    {            
          double x = 55.32;  
          double y = -42.71;
          double z = -56.89;
          
          System.out.println("Greater number is " + Double.max(x, y));  // print the larger number between x and y 
          System.out.println("Greater number is " + Double.max(y, z));  // print the larger number between y and z
    }  
}


Greater number is 55.32
Greater number is -42.71

Example 2:

Here is a user-defined example where anyone using this code can put a value of his choice and get the equivalent output.

import java.util.Scanner; 
public class StudyTonight
{  
    public static void main(String[] args) 
    {  
        try
        {
           System.out.println("Enter the Two values: ");  
           Scanner sc= new Scanner(System.in);  
           double a = sc.nextDouble();  
           double b = sc.nextDouble();                         
           
           System.out.println("Larger value is " + Double.max(a, b)); //Print the larger number between a and b 
          
        }
        catch(Exception e)
        {
          System.out.println("Invalid input!!");
        }         
    }  
}  


Enter the Two values:
78.89 90.54
Larger value is 90.54000091552734
***************************************
Enter the Two values:
844.89 -6755.8
Larger value is 844.8900146484375
***************************************
Enter the Two values:
0x67
Invalid input!!

Live Example:

Here, you can test the live code example. You can execute the example for different values, even can edit and write your examples to test the Java code.



About the author:
A Computer Science and Engineering Graduate(2016-2020) from JSSATE Noida. JAVA is Love. Sincerely Followed Sachin Tendulkar as a child, M S Dhoni as a teenager, and Virat Kohli as an adult.