Floor(
x
)
Returns the largest whole number less than or equal to x.
Example
=
Block
{
ShowFloor
(1.01);
ShowFloor
(1.99);
ShowFloor
(
-
1.02);
};
The floor of 1.01 is 1.
The floor of 1.99 is 1.
The floor of -1.02 is -2.