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
猜你喜欢
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
  • 2022-12-23
  • 2021-10-31
相关资源
相似解决方案