maksimum() altında Tamsayı sınıfının bir yöntemidir Java .lang paketi. Bu yöntem, kullanıcı tarafından belirtilen iki yöntem bağımsız değişkeni arasındaki maksimum değeri sayısal olarak döndürür. Bu yöntem aşırı yüklenebilir ve int, double, float ve long argümanlarını alır. Bu yöntem tarafından belirtilir. Matematik Sınıf.
Not: Argüman olarak pozitif ve negatif bir sayı iletilirse pozitif bir sonuç elde edilir. Ve eğer her iki parametre de negatif sayı olarak geçerse, daha düşük büyüklükte sonuç üretir.
Sözdizimi:
beyanı aşağıdadır maksimum() yöntem:
public static int max(int a, int b) public static long max(long a, long b) public static float max(float a, float b) public static double max(double a, double b)
Parametre:
Veri tipi | Parametre | Tanım | Gerekli/İsteğe bağlı |
---|---|---|---|
int | A | Kullanıcı tarafından girilen sayısal değer. | Gerekli |
int | B | Kullanıcı tarafından girilen sayısal değer. | Gerekli |
İadeler:
maksimum() yöntem, kullanıcı tarafından belirtilen iki yöntem bağımsız değişkeni arasındaki büyük değeri döndürür.
İstisnalar:
O
Uyumluluk Sürümü:
Java 1.5 ve üzeri
örnek 1
public class IntegerMaxExample1 { public static void main(String[] args) { // get two integer numbers int x = 5485; int y = 3242; // print the larger number between x and y System.out.println('Math.max(' + x + ',' + y + ')=' + Math.max(x, y)); } }Şimdi Test Edin
Çıktı:
Math.max(5485,3242)=5485
Örnek 2
import java.util.Scanner; public class IntegerMaxExample2 { public static void main(String[] args) { //Get two integer numbers from console System.out.println('Enter the Two Numeric value: '); Scanner readInput= new Scanner(System.in); int a = readInput.nextInt(); int b = readInput.nextInt(); readInput.close(); //Print the larger number between a and b System.out.println('Larger value of Math.max(' + a + ',' + b + ') = ' + Math.max(a, b)); } }
Çıktı:
Enter the Two Numeric value: 45 77 Larger value of Math.max(45,77) = 77
Örnek 3
public class IntegerMaxExample3 { public static void main(String[] args) { //Get two integer numbers int a = -25; int b = -23; // Prints result with lower magnitude System.out.println('Result: '+Math.max(a, b)); } }Şimdi Test Edin
Çıktı:
Result: -23
Örnek 4
public class IntegerMaxExample4 { public static void main(String[] args) { //Get two integer numbers int a = -75; int b = 23; // Prints result with positive value System.out.println('Result: '+Math.max(a, b)); } }Şimdi Test Edin
Çıktı:
Result: 23