Latest web development tutorials

Java min () method

Java Number classes Java Number classes


min () method returns the minimum of the two parameters.

grammar

This method has the following syntax:

double min(double arg1, double arg2)
float min(float arg1, float arg2)
int min(int arg1, int arg2)
long min(long arg1, long arg2)

parameter

This method accepts two native data type as a parameter.

return value

Returns the minimum of the two parameters.

Examples

public class Test{
	public static void main(String args[]){
		System.out.println(Math.min(12.123, 12.456));      
		System.out.println(Math.min(23.12, 23.0));  
	}
}

Compile the above program, the output is:

12.123
23.0

Java Number classes Java Number classes