$ceil
The$ceil operator returns the smallest integer value that is greater than or equal to the input value.
Input
- A single numeric value
Output
- The ceiling of the input value (rounded up to the nearest integer)
Examples
Decimal Below .5
4
Decimal Above .5
8
Exact Integer
5
Negative Number
-3

