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()
public class Gfg {
public static void main(String args[])
{
double a = 12.123 ;
double b = 12.456 ;
System.out.println(Math.max(a, b));
}
}
|
Output:
12.456
public class Gfg {
public static void main(String args[])
{
int a = 23 ;
int b = - 23 ;
System.out.println(Math.max(a, b));
}
}
|
Output:
23
public class Gfg {
public static void main(String args[])
{
int a = - 25 ;
int b = - 23 ;
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!