Sintaxis:
public static int max(int a, int b) public static double max(double a, double b) public static long max(long a, long b) public static float max(float a, float b)
Parámetros:
a: first value b: second value
Devolver:
This method returns maximum of two numbers.
- Si proporcionamos valores positivos y negativos como argumento, este método devolverá un argumento positivo.
- Si proporcionamos ambos valores negativos como argumento, se devuelve como resultado el número con la magnitud más baja.
- Si los argumentos no son un número (NaN), este método devolverá NaN.
Ejemplo 1:
public class MaxExample1 { public static void main(String args[]) { int x = 20; int y = 50; //print the maximum of two numbers System.out.println(Math.max(x, y)); } }Pruébalo ahora
Producción:
50
Ejemplo 2:
public class MaxExample2 { public static void main(String args[]) { double x = 25.67; double y = -38.67; //print the maximum of two numbers System.out.println(Math.max(x, y)); } }Pruébalo ahora
Producción:
25.67
Ejemplo 3:
public class MaxExample3 { public static void main(String args[]) { float x = -25.74f; float y = -20.38f; //print the maximum of two numbers System.out.println(Math.max(x, y)); } }Pruébalo ahora
Producción:
-20.38