命名空间
变体
操作

std::gcd

来自 cppreference.com
< cpp‎ | numeric
定义在头文件 <numeric>
template< class M, class N >
constexpr std::common_type_t<M, N> gcd( M m, N n );
(自 C++17 起)

计算整数 mn最大公约数

如果 MN 不是整数类型,或者如果两者都是(可能带 cv 限定符的)bool,则程序格式错误。

如果 |m||n| 不能表示为 std::common_type_t<M, N> 类型的值,则行为未定义。

内容

[编辑] 参数

m, n - 整数值

[编辑] 返回值

如果 mn 均为零,则返回零。否则,返回 |m||n| 的最大公约数。

[编辑] 异常

不抛出任何异常。

[编辑] 注释

特性测试 Std 特性
__cpp_lib_gcd_lcm 201606L (C++17) std::gcd, std::lcm

[编辑] 示例

#include <numeric>
 
int main()
{
    constexpr int p{2 * 2 * 3};
    constexpr int q{2 * 3 * 3};
    static_assert(2 * 3 == std::gcd(p, q));
 
    static_assert(std::gcd( 6,  10) == 2);
    static_assert(std::gcd( 6, -10) == 2);
    static_assert(std::gcd(-6, -10) == 2);
 
    static_assert(std::gcd( 24, 0) == 24);
    static_assert(std::gcd(-24, 0) == 24);
}

[编辑] 另请参阅

(C++17)
计算两个整数的最小公倍数
(函数模板) [编辑]