int gcd(int a,int b){
return b==0?a:gcd(b,a%b);
}
求公约数模板 C++
最新推荐文章于 2024-06-19 16:52:49 发布
int gcd(int a,int b){
return b==0?a:gcd(b,a%b);
}