- 0 Talk
-
API ceil
ceil(value) returns the ceiling of the value (the next highest whole number) i.e. rounds value up
int = math.ceil(n); int = ceil(n);
Examples
Edit
> print(ceil(3.141592653)) 4
round > print(ceil(n - .5))
ceil(value) returns the ceiling of the value (the next highest whole number) i.e. rounds value up
int = math.ceil(n); int = ceil(n);
> print(ceil(3.141592653)) 4
round > print(ceil(n - .5))