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

  1. <!--- This example shows the use of Round --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>
  5. Round Example
  6. </TITLE>
  7. </HEAD>
  8.  
  9. <BODY>
  10. <H3>Round Example</H3>
  11.  
  12. <P>This function rounds a number to the closest
  13. integer.
  14. <UL>
  15.     <LI>Round(7.49) : <CFOUTPUT>#Round(7.49)#</CFOUTPUT>
  16.     <LI>Round(7.5) : <CFOUTPUT>#Round(7.5)#</CFOUTPUT>
  17.     <LI>Round(-10.775) : <CFOUTPUT>#Round(-10.775)#</CFOUTPUT>
  18. </UL>
  19.  
  20. </BODY>
  21. </HTML>       
  22.