factorial
Calculate the factorial of any integer using Calculator MCP. Input a number to compute its factorial efficiently, ideal for mathematical and programming applications.
Instructions
计算整数阶乘
Input Schema
Name | Required | Description | Default |
---|---|---|---|
n | Yes |
Input Schema (JSON Schema)
{
"properties": {
"n": {
"title": "N",
"type": "integer"
}
},
"required": [
"n"
],
"title": "factorialArguments",
"type": "object"
}