- Java.lang.math.min() er en indbygget metode i Java, som bruges til at returnere Minimum eller Laveste værdi fra de givne to argumenter. Argumenterne tages i int, float, double og long.
Syntaks:
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)
Parametre:
a: first value b: second value
Vend tilbage:
This method returns minimum of two numbers.
- Hvis vi giver positiv og negativ værdi som argument, vil denne metode returnere negativt argument.
- Hvis vi angiver begge negative værdier som argument, returneres tal med den højeste størrelse som resultat.
- Hvis argumenterne ikke er et tal(NaN), vil denne metode returnere NaN.
Eksempel 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)); } }Test det nu
Produktion:
20
Eksempel 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)); } }Test det nu
Produktion:
-38.67
Eksempel 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)); } }Test det nu
Produktion:
-55.73