gmp_lcm()是 PHP 中的内置函数,用于计算两个或多个整数的最小公倍数 (LCM)。
用法:
gmp_lcm(GMP|int|string $num1, GMP|int|string $num2): GMP
Parameters: 该函数接受两个参数,如下所述。
- $num1: 表示第一个整数的 GMP 编号资源。
- $num2: 表示第二个整数的 GMP 编号资源。
返回值: gmp_lcm()函数返回用户提供的两个整数的lcm。
程序1:下面的程序演示了gmp_lcm()函数。
PHP
<?php
// Assuming you have the GMP
// extension enabled
$a = gmp_init(12);
$b = gmp_init(18);
$lcm = gmp_lcm($a, $b);
echo "LCM of $a and $b is: $lcm\n";
?>
输出:
LCM of 12 and 18 is: 36
程序2:下面的程序演示了gmp_lcm()函数。
PHP
<?php
// Assuming you have the GMP
// extension enabled
$a = gmp_init(12);
$b = gmp_init(18);
$c = gmp_init(24);
$lcm_of_three = gmp_lcm($a, gmp_lcm($b, $c));
echo "LCM of $a, $b, and $c is: $lcm_of_three\n";
?>
输出:
LCM of 12, 18, and 24 is: 72
参考:https://www.php.net/manual/en/function.gmp-lcm.php
相关用法
- PHP gmp_lcm()用法及代码示例
- PHP gmp_legendre()用法及代码示例
- PHP gmp_binomial()用法及代码示例
- PHP gmp_div()用法及代码示例
- PHP gmp_fact()用法及代码示例
- PHP gmp_init()用法及代码示例
- PHP gmp_kronecker()用法及代码示例
- PHP gmp_testbit()用法及代码示例
- PHP gmp_abs()用法及代码示例
- PHP gmp_and()用法及代码示例
- PHP gmp_clrbit()用法及代码示例
- PHP gmp_cmp()用法及代码示例
- PHP gmp_com()用法及代码示例
- PHP gmp_div_q()用法及代码示例
- PHP gmp_div_qr()用法及代码示例
- PHP gmp_div_r()用法及代码示例
- PHP gmp_divexact()用法及代码示例
- PHP gmp_export()用法及代码示例
- PHP gmp_gcd()用法及代码示例
- PHP gmp_gcdext()用法及代码示例
- PHP gmp_hamdist()用法及代码示例
- PHP gmp_import()用法及代码示例
- PHP gmp_intval()用法及代码示例
- PHP gmp_jacobi()用法及代码示例
- PHP gmp_mod()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP gmp_lcm() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。