Rounds a number up to the next integer.
Function
result = ceiling(input)
Arguments
Argument | Data Type |
input | numeric |
---|---|
result | int |
Comments
Rounds up to the next integer. Positive numbers are rounded up. Negative numbers are rounded towards zero.
Examples
result = ceiling(100.75)
/* result = 101 */