home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Documentation / snippets / ceiling.cfm < prev    next >
Encoding:
Text File  |  1999-04-12  |  446 b   |  27 lines

  1. <!--- This example illustrates the CF function ceiling --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6.  
  7. <TITLE>Ceiling Example</TITLE>
  8.  
  9. </HEAD>
  10.  
  11. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  12. <BODY  bgcolor="#FFFFD5">
  13.  
  14. <H3>Ceiling Example</H3>
  15.  
  16. <CFOUTPUT>
  17. <P>The ceiling of 3.4 is #ceiling(3.4)#
  18. <P>The ceiling of 3 is #ceiling(3)#
  19. <P>The ceiling of 3.8 is #ceiling(3.8)#
  20. <P>The ceiling of -4.2 is #ceiling(-4.2)#
  21. </CFOUTPUT>
  22.  
  23.  
  24. </BODY>
  25.  
  26. </HTML>       
  27.