美文网首页
最大公约数(greatest common divisor)

最大公约数(greatest common divisor)

作者: xyzxyznone | 来源:发表于2016-11-30 14:46 被阅读0次
    def gcd(a: Int, b: Int): Int = if (b == 0) a else gcd(b, a % b)
    

    相关文章

      网友评论

          本文标题:最大公约数(greatest common divisor)

          本文链接:https://www.haomeiwen.com/subject/lmltmttx.html