- Java.lang.math.min() es un método incorporado en Java que se utiliza para devolver el valor mínimo o más bajo de los dos argumentos dados. Los argumentos se toman en int, float, double y long.
Sintaxis:
public static int min(int a, int b) public static double min(double a, double b) public static long min(long a, long b) public static float min(float a, float b)
Parámetros:
a: first value b: second value
Devolver:
This method returns minimum of two numbers.
- Si proporcionamos valores positivos y negativos como argumento, este método devolverá un argumento negativo.
- Si proporcionamos ambos valores negativos como argumento, se devuelve como resultado el número con la magnitud más alta.
- Si los argumentos no son un número (NaN), este método devolverá NaN.
Ejemplo 1:
public class MinExample1 { public static void main(String args[]) { int x = 20; int y = 50; //print the minimum of two numbers System.out.println(Math.min(x, y)); } }Pruébalo ahora
Producción:
20
Ejemplo 2:
public class MinExample2 { public static void main(String args[]) { double x = 25.67; double y = -38.67; //print the minimum of two numbers System.out.println(Math.min(x, y)); } }Pruébalo ahora
Producción:
-38.67
Ejemplo 3:
public class MinExample3 { public static void main(String args[]) { float x = -55.73f; float y = -30.95f; //print the minimum of two numbers System.out.println(Math.min(x, y)); } }Pruébalo ahora
Producción:
-55.73