ClassicASP 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
%>
참고자료
http://anshnote.blogspot.com/2011/07/asp-ceil.html
댓글목록
등록된 댓글이 없습니다.