码迷,mamicode.com
首页 > 其他好文 > 详细

辗转相除法求最大公约数,然后求出最小公倍数

时间:2020-07-01 22:00:25      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:iso   while   除法   comm   最小   col   code   multi   最大   

 private static int minCommonMultiple(int m,int n){
        return n * m / maxCommonDivisor(m,n);
    }
    /**
      * 求最大公约数
      **/
    private static int maxCommonDivisor(int m,int n){
        if(m < n){// 确保m > n
            int t = m;
            m = n;
            n = t;
        }
        int t = 0;
        while ((t = m % n) != 0){
            m = n;
            n = t;
        }
        return n;
    }

 

辗转相除法求最大公约数,然后求出最小公倍数

标签:iso   while   除法   comm   最小   col   code   multi   最大   

原文地址:https://www.cnblogs.com/dongma/p/13221647.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!