logo

Méthode Java Math.max()

    Le Java.lang.math.max()est une méthode intégrée à Java qui est utilisée pour renvoyer la valeur maximale ou la plus grande à partir des deux arguments donnés. Les arguments sont pris en int, float, double et long.

Syntaxe:

 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) 

Paramètres:

 a: first value b: second value 

Retour:

 This method returns maximum of two numbers. 
  • Si nous fournissons des valeurs positives et négatives comme argument, cette méthode renverra un argument positif.
  • Si nous fournissons les deux valeurs négatives comme argument, le nombre avec la magnitude la plus faible est renvoyé comme résultat.
  • Si les arguments ne sont pas un nombre (NaN), cette méthode renverra NaN.

Exemple 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)); } } 
Testez-le maintenant

Sortir:

 50 

Exemple 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)); } } 
Testez-le maintenant

Sortir:

 25.67 

Exemple 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)); } } 
Testez-le maintenant

Sortir:

 -20.38