- Java.lang.math.min() är en inbyggd metod i Java som används för att returnera Minimum eller Lägsta värde från de givna två argumenten. Argumenten tas i int, float, double och long.
Syntax:
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)
Parametrar:
a: first value b: second value
Lämna tillbaka:
This method returns minimum of two numbers.
- Om vi tillhandahåller positivt och negativt värde som argument kommer denna metod att returnera negativt argument.
- Om vi tillhandahåller båda negativa värden som argument, returneras nummer med den högre magnituden som resultat.
- Om argumenten inte är ett tal(NaN), kommer denna metod att returnera NaN.
Exempel 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)); } }Testa det nu
Produktion:
20
Exempel 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)); } }Testa det nu
Produktion:
-38.67
Exempel 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)); } }Testa det nu
Produktion:
-55.73