home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Documentation / snippets / decimalformat.cfm < prev    next >
Encoding:
Text File  |  1999-04-12  |  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.