logo

Java Integer min() Метод

The мин() е метод на клас Integer под пакет java.lang . Този метод връща числено минималната стойност сред двата метода аргумент зададени от потребител. Този метод може да бъде претоварен и приема аргументите в int, double, float и long.

Забележка: Ако положително и отрицателно число се предаде като аргумент, това генерира отрицателен резултат. И ако и двата параметъра са предадени като отрицателно число, той генерира резултат с по-голяма величина.

Синтаксис:

Следва декларацията на мин() метод:

алтернатива на mylivecricket
 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) 

Параметър:

DataType Параметър Описание Задължително/По избор
вътр а Числова стойност, въведена от потребител. Задължително
вътр b Числова стойност, въведена от потребител. Задължително

Се завръща:

The мин() метод връща по-малката стойност сред двата аргумента на метода, посочени от потребителя.

Изключения:

ЧЕ

Версия за съвместимост:

Java 1.5 и по-нова версия

Пример 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)); } } 
Тествайте сега

Изход:

 Math.min(5485,3242)=3242 

Пример 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)); } } 

Изход:

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

Пример 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)); } } 
Тествайте сега

Изход:

 Result: -70 

Пример 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)); } 
Тествайте сега

Изход:

 Result: -20