home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / fix.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  568 b   |  25 lines

  1. <!--- This example shows the use of Fix --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>
  5. Fix Example
  6. </TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11. <H3>Fix Example</H3>
  12.  
  13. <P>Fix returns the closest integer less than the number
  14. if the number is greater than or equal to 0.  Fix returns the
  15. closest integer greater than the number if number is less than 0.
  16. <CFOUTPUT>
  17. <P>The fix of 3.4 is #fix(3.4)#
  18. <P>The fix of 3 is #fix(3)#
  19. <P>The fix of 3.8 is #fix(3.8)#
  20. <P>The fix of -4.2 is #fix(-4.2)#
  21. </CFOUTPUT>
  22.  
  23. </BODY>
  24. </HTML>       
  25.