定义和用法
这个gmp_fact()函数计算给定数字的阶乘。
描述
gmp_fact() 将返回给定数字的阶乘。
用法
gmp_fact ( mixed $a ):GMP
参数
Sr.No | 参数及说明 |
---|---|
1 |
a 它可以是 GMP 资源编号、gmp 对象或数字字符串。 |
返回值
PHP gmp_fact() 函数返回阶乘作为 GMP 数字。
PHP版本
此函数适用于 5.0.0 以上的 PHP 版本。
例子1
gmp_fact 的工作 -
<?php
$fact = gmp_fact('16');
echo "The factorial of 16 is:".$fact;
echo "<br/><br/>";
$fact1 = gmp_fact('4');
echo "The factorial of 4 is:".$fact1;
?>
这将产生以下结果 -
The factorial of 16 is:20922789888000 The factorial of 4 is:24
例子2
gmp_fact 的工作 -
<?php
$fact = gmp_fact('45');
echo "The factorial of 456 is:".$fact;
?>
这将产生以下结果 -
The factorial of 456 is:119622220865480194561963161495657715064383733760000000000
相关用法
- PHP gmp_clrbit()用法及代码示例
- PHP gmp_cmp()用法及代码示例
- PHP gmp_testbit()用法及代码示例
- PHP gmp_root()用法及代码示例
- PHP gmp_div_r()用法及代码示例
- PHP gmp_sub()用法及代码示例
- PHP gmp_sqrt()用法及代码示例
- PHP gmp_import()用法及代码示例
- PHP gmp_pow()用法及代码示例
- PHP gmp_scan0()用法及代码示例
- PHP gmp_or()用法及代码示例
- PHP gmp_abs()用法及代码示例
- PHP gmp_hamdist()用法及代码示例
- PHP gmp_binomial()用法及代码示例
- PHP gmp_strval()用法及代码示例
- PHP gmp_sqrtrem()用法及代码示例
- PHP gmp_neg()用法及代码示例
- PHP gmp_com()用法及代码示例
- PHP gmp_legendre()用法及代码示例
- PHP gmp_gcd()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - gmp_fact() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。