Ceil
Result = Ceil(Value#)
 
Parameters:

    Value# = The value you wish to floor
Returns:

    Result = The truncated integer
 

      The Ceil function returns a floating-point value representing the largest integer that is greater than or equal to Value#.



FACTS:

      * Floor is the opposite of Ceil.

      * RoundUp and Ceil are not the same functionality.




Mini Tutorial:


  
  
; set up a for next loop
  For lp=0 To 100 Step 10
     
   ; make V# equal to the loop counter divided by 100
     v#=lp/100.0
     Print "     V#="+Str$(V#)
     
   ; display V#  rounded up
     Print "RoundUp:"+Str$(RoundUp(V#))
     
   ; display V#  trancated by Ceil()
     Print "   Ceil:"+Str$(Ceil(V#))
     
  Next
  
  
; Display the Screen and wait for the user to press a key
  Sync
  WaitKey
  




This example would output.

  
  V#=0.0
  RoundUp:0.0
  Ceil:0
  V#=0.1
  RoundUp:1.0
  Ceil:1
  V#=0.2
  RoundUp:1.0
  Ceil:1
  V#=0.3
  RoundUp:1.0
  Ceil:1
  V#=0.4
  RoundUp:1.0
  Ceil:1
  V#=0.5
  RoundUp:1.0
  Ceil:1
  V#=0.6
  RoundUp:1.0
  Ceil:1
  V#=0.7
  RoundUp:1.0
  Ceil:1
  V#=0.8
  RoundUp:1.0
  Ceil:1
  V#=0.9
  RoundUp:1.0
  Ceil:1
  V#=1.0
  RoundUp:2.0
  Ceil:1
  
  

 
Related Info: Int | RoundDown | RoundUp :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com