Szintaxis:
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éterek:
a: first value b: second value
Visszatérés:
This method returns maximum of two numbers.
- Ha pozitív és negatív értéket adunk meg argumentumként, akkor ez a módszer pozitív argumentumot ad vissza.
- Ha mindkét negatív értéket megadjuk argumentumként, akkor az alacsonyabb nagyságrendű szám kerül visszaadásra.
- Ha az argumentumok nem számok (NaN), ez a metódus NaN-t ad vissza.
1. példa:
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)); } }Tesztelje most
Kimenet:
50
2. példa:
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)); } }Tesztelje most
Kimenet:
25.67
3. példa:
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)); } }Tesztelje most
Kimenet:
-20.38