home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / ceiling.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  399 b   |  26 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. <BODY bgcolor=silver>
  12.  
  13. <H3>Ceiling Example</H3>
  14.  
  15. <CFOUTPUT>
  16. <P>The ceiling of 3.4 is #ceiling(3.4)#
  17. <P>The ceiling of 3 is #ceiling(3)#
  18. <P>The ceiling of 3.8 is #ceiling(3.8)#
  19. <P>The ceiling of -4.2 is #ceiling(-4.2)#
  20. </CFOUTPUT>
  21.  
  22.  
  23. </BODY>
  24.  
  25. </HTML>       
  26.