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 / decimalformat.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  459 b   |  24 lines

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