Java Math min() method with Examples Last Updated : 13 Jul, 2021 Comments Improve Suggest changes Like Article Like Report The Java.lang.math.min() function is an inbuilt function in java that returns the minimum of two numbers. The arguments are taken in int, double, float and long. If a negative and a positive number is passed as an argument then the negative result is generated. And if both parameters passed are negative then the number with the higher magnitude is generated as result.Syntax: dataType min(dataType num1, dataType num2) The datatypes can be int, float, double or long. Parameters : The function accepts two parameters num1 and num2 among which the minimum is returned Return value: The function returns the minimum of two numbers. The datatype will be the same as that of the arguments. Given below are the examples of the function min(): Java // Java program to demonstrate the // use of min() function // two double data-type numbers are passed as argument public class Gfg { public static void main(String args[]) { double a = 12.123; double b = 12.456; // prints the minimum of two numbers System.out.println(Math.min(a, b)); } } Output: 12.123 Java // Java program to demonstrate the // use of min() function // when one positive and one // negative integers are passed as argument public class Gfg { public static void main(String args[]) { int a = 23; int b = -23; // prints the minimum of two numbers System.out.println(Math.min(a, b)); } } Output: -23 Java // Java program to demonstrate // the use of min() function // when two negative integers // are passed as argument public class Gfg { public static void main(String args[]) { int a = -25; int b = -23; // prints the minimum of two numbers System.out.println(Math.min(a, b)); } } Output: -25 If you want to find the minimum of two numbers many times in your code, then it's often tedious to write the complete Math.min() every time. So a shorter and a bit time-saver way out here is to directly import java.lang.Math.min as static and then use just min() instead of the complete Math.min(). Java import static java.lang.Math.min; class GFG { public static void main(String[] args) { int a = 3; int b = 4; System.out.println(min(a, b)); } } Output3 Comment More infoAdvertise with us Next Article Java Math min() method with Examples T Twinkl Bajaj Follow Improve Article Tags : Misc Java Java-lang package java-math Practice Tags : JavaMisc Similar Reads Stream min() method in Java with Examples Stream.min() returns the minimum element of the stream based on the provided Comparator. A Comparator is a comparison function, which imposes a total ordering on some collection of objects. min() is a terminal operation which combines stream elements and returns a summary result. So, min() is a spec 3 min read Java Guava | Shorts.min() method with Examples Shorts.min() method of Guava's Shorts Class is used to find the least value present in an array. The value returned by this method is the smallest short value in the specified array. Syntax: public static short min(short... array) Parameters: This method takes a mandatory parameter array which is a 2 min read Java floor() method with Examples The java.lang.Math.floor() returns the double value that is less than or equal to the argument and is equal to the nearest mathematical integer. Note: If the argument is Integer, then the result is Integer.If the argument is NaN or an infinity or positive zero or negative zero, then the result is th 2 min read StrictMath min() Method in Java with Examples The java.lang.StrictMath.min() method returns the smaller of two values. There are four variations of this method with different types of parameters passed. All of them are discussed below : min(double num1, double num2) is the inbuilt method of StrictMath class which is used to get the least of giv 6 min read Collections min() method in Java with Examples min(Collection<? extends T> coll) The min() method of java.util.Collections class is used to return the minimum element of the given collection, according to the natural ordering of its elements. All elements in the collection must implement the Comparable interface. Furthermore, all elements 4 min read Like