About | Help  
  
 
WebsterComputerMath
 
ABCDEFGHIJKLMNOPQRSTUVWXYZ
 
CaCbCcCdCeCfCgChCiCjCkClCmCnCoCpCqCrCsCtCuCvCwCxCyCz
 

CEILING

Ceiling - This is the integer round-up of a value, x:

Ceiling(x) = min(z: z integer, z >= x). Examples: Ceiling(5)=5, Ceiling(5.001)=6, Ceiling(–1.2)=–1. Also, see floor .