Ceil is an integer function. Ceil(x) returns the smallest integer greater than x. For example: ceil(2.5)==3ceil(-2.5)==-2.
There is also a floor function which is also an integer function. Floor(x) returns the largest integer less than or equal to x.
For example, floor(2.5)==
Second floor (-2.5).