This method is used to round the decimal to the closest integer toward positive infinity.
Syntax: public static decimal Ceiling (decimal d);
Here d is the decimal whose ceiling value is to be calculated.
Return Value: It returns the smallest integral value that is greater than or equal to the d parameter. Note that this method returns a Decimal instead of an integral type.
Below programs illustrate the use of
Decimal.Ceiling(Decimal) Method:
Example 1:
Output:
Ceiling Value is : 5
Example 2:
Output:
Ceiling Value is : -5
Example 3: