logo

Metoda Java Integer min().

The min() je metoda razreda Integer pod paket java.lang . Ta metoda številčno vrne najmanjšo vrednost med obema metodama prepir določi uporabnik. Ta metoda je lahko preobremenjena in sprejme argumente int, double, float in long.

Opomba: Če sta kot argument posredovana pozitivno in negativno število, je rezultat ustvaril negativen rezultat. In če sta oba parametra podana kot negativno število, ustvari rezultat z večjo velikostjo.

Sintaksa:

Sledi izjava min() metoda:

velikosti pisave v lateksu
 public static int min(int a, int b) public static long min(long a, long b) public static float min(float a, float b) public static double min(double a, double b) 

Parameter:

DataType Parameter Opis Obvezno/izbirno
int a Številska vrednost, ki jo vnese uporabnik. Obvezno
int b Številska vrednost, ki jo vnese uporabnik. Obvezno

Vrne:

The min() metoda vrne manjšo vrednost med dvema argumentoma metode, ki ju določi uporabnik.

Izjeme:

TO

Združljivostna različica:

Java 1.5 in novejši

Primer 1

 public class IntegerMinExample1 { public static void main(String[] args) { // Get two integer numbers int a = 5485; int b = 3242; // print the smaller number between x and y System.out.println('Math.min(' + a + ',' + b + ')=' + Math.min(a, b)); } } 
Preizkusite zdaj

Izhod:

 Math.min(5485,3242)=3242 

Primer 2

 import java.util.Scanner; public class IntegerMinExample2 { 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 smaller number between a and b System.out.println('Smaller value of Math.min(' + a + ',' + b + ') = ' + Math.min(a, b)); } } 

Izhod:

 Enter the Two Numeric value: 45 76 Smaller value of Math.min(45,76) = 45 

Primer 3

 public class IntegerMinExample3 { public static void main(String[] args) { //Get two integer numbers int a = -70; int b = -25; // prints result with greater magnitude System.out.println('Result: '+Math.min(a, b)); } } 
Preizkusite zdaj

Izhod:

 Result: -70 

Primer 4

 public class IntegerMinExample4 { public static void main(String[] args) { //Get two integer numbers int a = -20; int b = 25; // prints result with negative value System.out.println('Result: '+Math.min(a, b)); } 
Preizkusite zdaj

Izhod:

 Result: -20