Groovy – ceil()

  • Post author:
  • Post category:Groovy
  • Post comments:0 Comments
ceil

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

Syntax

double ceil(double d) 
double ceil(float f)

Parameters โˆ’ A double or float primitive data type.

Return Value โˆ’ This method Returns the smallest integer that is greater than or equal to the argument. Returned as a double.

Example

Following is an example of the usage of this method โˆ’

class Example { 
   static void main(String[] args) { 
      double a = -100.675; 
      float b = -90;
		
      System.out.println(Math.ceil(a)); 
      System.out.println(Math.ceil(b)); 
   } 
}

When we run the above program, we will get the following result โˆ’

-100.0 
-90.

Previous Page:-Click Here

Leave a Reply