Ceil(
     double:value
)
double

Arguments

value

Input value.

Return value

Rounded input value.

Description

Rounds the input value up to the nearest integer (toward positive infinity).

Example:

Output( Ceil(1.6) );
--> 2.000000

See also:
Floor
Round