round
Round a number to the nearest integer using a simple API tool for precise numerical calculations. Ideal for quick and accurate integer conversion.
Instructions
Rounds a number to the nearest integer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
number | Yes | The number to round |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"number": {
"description": "The number to round",
"type": "number"
}
},
"required": [
"number"
],
"type": "object"
}