double min(double val1, double val2)
Returns the lesser of the two specified double values. If the specified values are equal, then the result is that same value.
Input Parameters
val1 | Integer The first argument. |
val2 | Integer The second argument. |
Return Value
Integer The lesser of val1 and val2. |