int gcd(int a,int b){
return b == 0 ? a : gcd(b , a % b);
}
gcd算法
2021/11/18 1:34:37
int gcd(int a,int b){
return b == 0 ? a : gcd(b , a % b);
}