IL massimo() è un metodo della classe Integer sotto Giava pacchetto .lang. Questo metodo restituisce numericamente il valore massimo tra i due argomenti del metodo specificati da un utente. Questo metodo può essere sovraccaricato e accetta gli argomenti in int, double , float e long. Questo metodo è specificato dal Matematica Classe.
Nota: se come argomento vengono passati un numero positivo e uno negativo, viene generato un risultato positivo. E se entrambi i parametri vengono passati come numero negativo, genera un risultato con la grandezza inferiore.
Sintassi:
Di seguito la dichiarazione di massimo() metodo:
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)
Parametro:
Tipo di dati | Parametro | Descrizione | Obbligatorio/facoltativo |
---|---|---|---|
int | UN | Valore numerico immesso da un utente. | Necessario |
int | B | Valore numerico immesso da un utente. | Necessario |
Ritorna:
IL massimo() Il metodo restituisce il valore maggiore tra i due argomenti del metodo specificati da un utente.
Eccezioni:
QUELLO
Versione compatibile:
Java 1.5 e versioni successive
Esempio 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)); } }Provalo adesso
Produzione:
Math.max(5485,3242)=5485
Esempio 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)); } }
Produzione:
Enter the Two Numeric value: 45 77 Larger value of Math.max(45,77) = 77
Esempio 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)); } }Provalo adesso
Produzione:
Result: -23
Esempio 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)); } }Provalo adesso
Produzione:
Result: 23