home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / int.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  389 b   |  23 lines

  1. <!--- This example shows the use of int --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>
  7. Int Example
  8. </TITLE>
  9. </HEAD>
  10.  
  11. <BODY bgcolor=silver>
  12.  
  13. <H3>Int Example</H3>
  14.  
  15. <P>Int returns the closest integer smaller than a number.
  16.  
  17. <P>Int(11.7) : <CFOUTPUT>#Int(11.7)#</CFOUTPUT>
  18. <P>Int(-11.7) : <CFOUTPUT>#Int(-11.7)#</CFOUTPUT>
  19. <P>Int(0) : <CFOUTPUT>#Int(0)#</CFOUTPUT>
  20. </BODY>
  21.  
  22. </HTML>       
  23.