- ה-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