logo

שיטת Java Math.max()‎

    ה-Java.lang.math.max()היא שיטה מובנית ב-Java המשמשת להחזרת הערך המקסימלי או הגדול ביותר משני הארגומנטים שניתנו. הטיעונים נלקחים ב-int, float, double ו-long.

תחביר:

 public static int max(int a, int b) public static double max(double a, double b) public static long max(long a, long b) public static float max(float a, float b) 

פרמטרים:

 a: first value b: second value 

לַחֲזוֹר:

 This method returns maximum of two numbers. 
  • אם נספק ערך חיובי ושלילי כארגומנט, שיטה זו תחזיר ארגומנט חיובי.
  • אם נספק את שני הערכים השליליים כארגומנט, המספר עם הגודל הנמוך יותר יוחזר כתוצאה מכך.
  • אם הארגומנטים אינם מספר (NaN), שיטה זו תחזיר את NaN.

דוגמה 1:

 public class MaxExample1 { public static void main(String args[]) { int x = 20; int y = 50; //print the maximum of two numbers System.out.println(Math.max(x, y)); } } 
בדוק את זה עכשיו

תְפוּקָה:

 50 

דוגמה 2:

 public class MaxExample2 { public static void main(String args[]) { double x = 25.67; double y = -38.67; //print the maximum of two numbers System.out.println(Math.max(x, y)); } } 
בדוק את זה עכשיו

תְפוּקָה:

 25.67 

דוגמה 3:

 public class MaxExample3 { public static void main(String args[]) { float x = -25.74f; float y = -20.38f; //print the maximum of two numbers System.out.println(Math.max(x, y)); } } 
בדוק את זה עכשיו

תְפוּקָה:

 -20.38