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 / pi.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  368 b   |  26 lines

  1. <!--- This shows the use of Pi --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>
  7. Pi Example
  8. </TITLE>
  9. </HEAD>
  10.  
  11. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  12. <BODY  bgcolor="#FFFFD5">
  13.  
  14. <H3>Pi Example</H3>
  15.  
  16.  
  17. Returns the number
  18. <CFOUTPUT>
  19. #NumberFormat(Pi(), '_._______________')#
  20. </CFOUTPUT>, the
  21. mathematical constant pi, accurate to 15 digits.
  22.  
  23. </BODY>
  24.  
  25. </HTML>       
  26.