asp에서 ceil함수(소수점 이하에 값이 있으면 무조건 올림)
''' ''' 소수점 아래 올림 : 소수점 값이 존재하면 무조건 올림 페이징에 유용(php ceil함수가 같음) ''' ''' 소수점 계산할 값 ''' 결과값 Function Ceil(ByVal intParam) Ceil = -(Int(-(intParam))) End Function Response.Write Ceil(4.3) ' 5 Response.Write Ceil(9.999) ' 10 Response.Write Ceil(-3.14) ' -3 Response.Write Int(33.9) '33 Response.Write CInt(0.5) '0 Response.Write CInt(3.5) '4 Response.Write CInt(3.6) '4
댓글
댓글 쓰기