C++ C++ – GCD 最大公约数 2020-10-222022-09-24 _Redstone_c_ lli gcd(lli x, lli y) { return y ? gcd(y, x % y) : x; }