In mathematics, there are two elementary special functions called ceiling() and floor() which allow us to round up or down, respectively, to the nearest whole number. These functions exist natively in PHP, but not in ASP. They are handy in situations where you want to force a number like 15.8 to round down to 15, but the round() function rounds it up to 16 according to the standard rules for rounding.
ASP
function floor(x)dim temptemp = round(x)if temp > x thentemp = temp - 1end iffloor = tempend functionfunction ceil(x)dim temptemp = round(x)if temp < x thentemp = temp + 1end ifceil = tempend function

No comments:
Post a Comment