int gcd(int a,int b)
{
return b?gcd(b,a%b):a;
}
欧几里得算法求最大公约数
最新推荐文章于 2024-11-14 17:58:10 发布
int gcd(int a,int b)
{
return b?gcd(b,a%b):a;
}