Function roundUp( x )
- Description:
-
Rounds a value up to an integer value.
Formally, returns the smallest (closest to negative infinity)
integer value that is not less than the argument.
- Parameters:
-
- x (floating point)
- a value.
- Return Value (integer):
x
rounded up
- Signature:
- int roundUp(double)