1 int gcd(int x,int y) 2 { 3 if(y==0)return x; 4 else return gcd(y,x%y); 5 } 相关文章: 2022-12-23 2021-12-03 2022-12-23 2022-12-23 2021-12-24 2021-12-03