Returns the smaller of two numbers.
nSmaller = Min (n1, n2)
Variable | Description |
---|---|
nSmaller | The smaller number. NUMBER. |
n1 | The first number to compare. NUMBER. |
n2 | The second number to compare. NUMBER. |
Min compares two numbers and returns whichever of them is smaller.
Print (Min (69.3, 80)) // prints: 69.3