home *** CD-ROM | disk | FTP | other *** search
- <!--- This example shows the use of int --->
-
- <HTML>
-
- <HEAD>
- <TITLE>
- Int Example
- </TITLE>
- </HEAD>
-
- <BASEFONT FACE="Arial, Helvetica" SIZE=2>
- <BODY bgcolor="#FFFFD5">
-
- <H3>Int Example</H3>
-
- <P>Int returns the closest integer smaller than a number.
-
- <P>Int(11.7) : <CFOUTPUT>#Int(11.7)#</CFOUTPUT>
- <P>Int(-11.7) : <CFOUTPUT>#Int(-11.7)#</CFOUTPUT>
- <P>Int(0) : <CFOUTPUT>#Int(0)#</CFOUTPUT>
- </BODY>
-
- </HTML>
-