定義和用法
這個gmp_lcm()函數計算給定 GMP 編號的 LCM。
描述
gmp_lcm() 函數將返回給定兩個 GMP 編號的最小公倍數。
用法
gmp_lcm ( mixed $a , mixed $b ):GMP
參數
Sr.No | 參數及說明 |
---|---|
1 |
a 它可以是 GMP 資源編號、gmp 對象或數字字符串。 |
2 |
b 它可以是 GMP 資源編號、gmp 對象或數字字符串。 b 的值必須是正數和奇數。 |
返回值
PHP gmp_lcm() 函數計算 LCM 並將其作為 GMP 編號返回。
PHP版本
此函數適用於 7.3.0 以上的 PHP 版本。
例子1
gmp_lcm 的工作 -
<?php
$lcm = gmp_lcm("12", "18");
echo "The LCM is:".$lcm;
?>
這將產生以下結果 -
The LCM is:36
例子2
gmp_lcm 的工作 -
<?php
$lcm = gmp_lcm("120", "180");
echo "The LCM is:".$lcm;
?>
這將產生以下結果 -
The LCM is:360
相關用法
- PHP gmp_legendre()用法及代碼示例
- 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_gcd()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - gmp_lcm() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。