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

  1. <!--- This code shows the use of DecimalFormat --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>
  5. DecimalFormat Example
  6. </TITLE>
  7. </HEAD>
  8.  
  9. <BODY bgcolor=silver>
  10. <H3>DecimalFormat Function</H3>
  11.  
  12. <P>Returns a number to two decimal places.
  13. <P>
  14. <CFLOOP FROM=1 TO=20 INDEX="counter">
  15. <CFOUTPUT>
  16. #counter# * Square Root of 2: #DecimalFormat("#Evaluate("#counter# * #sqr(2)#")#")#
  17. </CFOUTPUT>
  18. <BR>
  19. </CFLOOP>
  20.  
  21. </BODY>
  22. </HTML>       
  23.