- Java.lang.math.min() هي طريقة مدمجة في Java تُستخدم لإرجاع القيمة الدنيا أو الأدنى من الوسيطتين المحددتين. يتم أخذ الوسائط بالصيغة int وfloat وdouble وlong.
بناء الجملة:
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)
حدود:
a: first value b: second value
يعود:
This method returns minimum of two numbers.
- إذا قدمنا قيمة موجبة وسالبة كوسيطة، فسوف تقوم هذه الطريقة بإرجاع وسيطة سلبية.
- إذا قدمنا كلا القيمتين السالبتين كوسيطة، فسيتم إرجاع الرقم ذو الحجم الأعلى كنتيجة.
- إذا لم تكن الوسيطات رقمًا (NaN)، فستُرجع هذه الطريقة NaN.
مثال 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)); } }اختبره الآن
انتاج:
20
مثال 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)); } }اختبره الآن
انتاج:
-38.67
مثال 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)); } }اختبره الآن
انتاج:
-55.73