logo

Java Math.max()-methode

    De Java.lang.math.max()is een ingebouwde methode in Java die wordt gebruikt om de maximale of grootste waarde van de gegeven twee argumenten te retourneren. De argumenten worden weergegeven in int, float, double en long.

Syntaxis:

 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) 

Parameters:

 a: first value b: second value 

Opbrengst:

 This method returns maximum of two numbers. 
  • Als we een positieve en een negatieve waarde als argument opgeven, retourneert deze methode een positief argument.
  • Als we beide negatieve waarden als argument opgeven, wordt een getal met de lagere grootte als resultaat geretourneerd.
  • Als de argumenten geen getal (NaN) zijn, retourneert deze methode NaN.

Voorbeeld 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)); } } 
Test het nu

Uitgang:

 50 

Voorbeeld 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)); } } 
Test het nu

Uitgang:

 25.67 

Voorbeeld 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)); } } 
Test het nu

Uitgang:

 -20.38