CEIL(A)
Rounds A to the smallest following integer
Integer CEIL(Float A)
A - Float value. If it is not of type float, it is implicitly converted to type float.
Rounds A to the smallest following integer
> PRINT CEIL(0.3)
1
> PRINT CEIL(0.7)
1
> PRINT CEIL(-0.3)
0
> PRINT CEIL(-0.7)
0