定義和用法
這個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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。