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

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