ceiling()

Learn how to use the ceiling() function to calculate the smallest integer greater than, or equal to, the specified numeric expression.

Calculates the smallest integer greater than, or equal to, the specified numeric expression.

Syntax

ceiling(number)

Parameters

NameTypeRequiredDescription
numberint, long, or real✔️The value to round up.

Returns

The smallest integer greater than, or equal to, the specified numeric expression.

Examples

print c1 = ceiling(-1.1), c2 = ceiling(0), c3 = ceiling(0.9)

Output

c1c2c3
-101