- El Java.lang.math.min() és un mètode integrat a Java que s'utilitza per retornar el valor mínim o més baix dels dos arguments donats. Els arguments es prenen en int, float, double i long.
Sintaxi:
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àmetres:
a: first value b: second value
Tornada:
This method returns minimum of two numbers.
- Si proporcionem un valor positiu i negatiu com a argument, aquest mètode retornarà un argument negatiu.
- Si proporcionem els dos valors negatius com a argument, es retorna el nombre amb la magnitud més alta com a resultat.
- Si els arguments no són un nombre (NaN), aquest mètode retornarà NaN.
Exemple 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)); } }Prova-ho ara
Sortida:
20
Exemple 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)); } }Prova-ho ara
Sortida:
-38.67
Exemple 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)); } }Prova-ho ara
Sortida:
-55.73