Ceiling function

Warning

This documentation refers to the Classic QDK, which has been replaced by the Modern QDK.

Please see https://aka.ms/qdk.api for the API documentation for the Modern QDK.

Namespace: Microsoft.Quantum.Math

Package: Microsoft.Quantum.QSharp.Foundation

Returns the smallest integer greater than or equal to the specified number.

function Ceiling (value : Double) : Int

Input

value : Double

The value whose ceiling is to be returned.

Output : Int

The ceiling of the input.

Example

Message($"{Ceiling(3.1)}");   //  4
Message($"{Ceiling(3.7)}");   //  4
Message($"{Ceiling(-3.1)}");  // -3
Message($"{Ceiling(-3.7)}");  // -3