Math.ceil(X)
This function rounds the given number to the nearest larger integer (number with no fraction). So it works just like Math.round, but it always rounds up.
Play around with the number in this example program to get a sense of how it works.