沙雕的gcd:

//1.gcd
int gcd(int a,int b) {
    return b?gcd(b,a%b):a;
}
View Code

相关文章:

  • 2021-09-17
  • 2021-07-22
  • 2021-05-16
  • 2021-09-14
  • 2021-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-03
  • 2021-10-04
  • 2022-01-24
  • 2021-11-09
  • 2022-02-23
  • 2021-11-11
相关资源
相似解决方案