home *** CD-ROM | disk | FTP | other *** search
- <!--- This code shows the use of DecimalFormat --->
- <HTML>
- <HEAD>
- <TITLE>
- DecimalFormat Example
- </TITLE>
- </HEAD>
-
- <BASEFONT FACE="Arial, Helvetica" SIZE=2>
- <BODY bgcolor="#FFFFD5">
- <H3>DecimalFormat Function</H3>
-
- <P>Returns a number to two decimal places.
- <P>
- <CFLOOP FROM=1 TO=20 INDEX="counter">
- <CFOUTPUT>
- #counter# * Square Root of 2: #DecimalFormat(Evaluate(counter * sqr(2)))#
- </CFOUTPUT>
- <BR>
- </CFLOOP>
-
- </BODY>
- </HTML>
-