Syntax
Floor <number>Description
Return the floor of the specified number.Parameters
<number>
- A integer or floating point number.
Remarks
The floor is the largest integer value less than or equal to a specified number. Thus, it is the integer part of a floating point number. See also Ceiling.Example
f = Ceiling 2.45The example sets the variable f equal to 2.