min()
This method is overloaded to handle int, long, float, or double arguments. If the input parameters are the same, min() returns a value equal to the two arguments. The signatures of the min() method are as follows: 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)
Posted By:
Name:Rajesh Kr
URL: min()