GCD最大公因数

145 阅读1分钟
int gcd(int a,int b)
{
    return b == 0 ? a : gcd(b, a % b);
}