当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP gmp_lcm()用法及代码示例


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


相关用法


注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP gmp_lcm() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。