Copyright © tutorialspoint.com

Java - ceil() Method

previous next


Description:

The method ceil gives the smallest integer that is greater than or equal to the argument.

Syntax:

This method has following variants:

double ceil(double d)

double ceil(float f)

Parameters:

Here is the detail of parameters:

Return Value :

Example:

public class Test{ 
   public static void main(String args[]){
      double d = -100.675;
      float f = -90;    

      System.out.println(Math.ceil(d));
      System.out.println(Math.ceil(f)); 
					 
      System.out.println(Math.floor(d));
      System.out.println(Math.floor(f)); 
   }
}

This produces following result:

-100.0
-90.0
-101.0
-90.0

previous next

Copyright © tutorialspoint.com