logo

Java Math.max() -menetelmä

    Java.lang.math.max()on Javaan sisäänrakennettu menetelmä, jota käytetään palauttamaan suurin tai suurin arvo annetuista kahdesta argumentista. Argumentit otetaan int, float, double ja long.

Syntaksi:

 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) 

Parametrit:

 a: first value b: second value 

Palata:

 This method returns maximum of two numbers. 
  • Jos annamme argumentiksi positiivisen ja negatiivisen arvon, tämä menetelmä palauttaa positiivisen argumentin.
  • Jos annamme molemmat negatiiviset arvot argumenttina, tuloksena palautetaan pienempi suuruusluku.
  • Jos argumentit eivät ole numero (NaN), tämä menetelmä palauttaa NaN.

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 50 

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 25.67 

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 -20.38