ceiling
Rounds a number up to the nearest integer using Math-MCP's mathematical functions. Submit the number to obtain the ceiling value for accurate numerical calculations.
Instructions
Rounds a number up to the nearest integer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
number | Yes | The number to round up |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"number": {
"description": "The number to round up",
"type": "number"
}
},
"required": [
"number"
],
"type": "object"
}