Last updated
Last updated
With this function, you can round up a decimal number to the next higher integer. Existing decimal places are removed, and the remaining integer is increased by 1.
If an integer is already passed as a parameter, it remains unchanged.
ceil(number)
number
Result: 3
Result: 13
Result: 27
, which rounds down a given number to the next lower integer.
, which rounds a given number to the nearest integer.
To round up a given number to the nearest integer