Open In App
Related Articles

Java Math max() method with Examples

Improve Article
Improve
Save Article
Save
Like Article
Like

The Java.lang.math.max() function is an inbuilt function in Java which returns maximum of two numbers. The arguments are taken in int, double, float and long.If a negative and a positive number is passed as argument then the positive result is generated. And if both parameters passed are negative then the number with the lower magnitude is generated as result.

Syntax:

dataType max(dataType num1, dataType num2)
The datatypes can be int, float, double or long.

Parameters : The function accepts two parameters num1 and num2 
among which the maximum is returned

Return value:The function returns maximum of two numbers. The datatype will be the same as that of the arguments.

Given below are the examples of the function max()




// Java program to demonstrate the use of max() function
// when two double data-type numbers are
// passed as arguments
public class Gfg {
  
    public static void main(String args[])
    {
        double a = 12.123;
        double b = 12.456;
  
        // prints the maximum of two numbers
        System.out.println(Math.max(a, b));
    }
}


Output:

12.456




// Java program to demonstrate the use of max() function
// when one positive and one negative
// integers are passed as argument
public class Gfg {
  
    public static void main(String args[])
    {
        int a = 23;
        int b = -23;
  
        // prints the maximum of two numbers
        System.out.println(Math.max(a, b));
    }
}


Output:

23




// Java program to demonstrate the use of max() function
// when two negative integers are passed as argument.
public class Gfg {
  
    public static void main(String args[])
    {
        int a = -25;
        int b = -23;
  
        // prints the maximum of two numbers
        System.out.println(Math.max(a, b));
    }
}


Output:

-23

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 16 Apr, 2018
Like Article
Save Article
Similar Reads
Related Tutorials