logo

Java Math.min()-metoden

  • Java.lang.math.min() er en innebygd metode i Java som brukes til å returnere Minimum eller Laveste verdi fra de gitte to argumentene. Argumentene er tatt 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) 

Parametere:

 a: first value b: second value 

Komme tilbake:

 This method returns minimum of two numbers. 
  • Hvis vi gir positiv og negativ verdi som argument, vil denne metoden returnere negativt argument.
  • Hvis vi gir begge negative verdier som argument, returneres tall med den høyeste størrelsen som resultat.
  • Hvis argumentene ikke er et tall(NaN), vil denne metoden 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 nå

Produksjon:

 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 nå

Produksjon:

 -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 nå

Produksjon:

 -55.73