码迷,mamicode.com
首页 > 编程语言 > 详细

java每日小算法(6)

时间:2014-05-27 04:04:03      阅读:374      评论:0      收藏:0      [点我收藏+]

标签:最小公倍数   package   算法   java   公约数   

/*【程序6】
题目:输入两个正整数m和n,求其最大公约数和最小公倍数。
1.程序分析:利用辗除法。  */
package test;
public class test {
    //最大公约数
     public static int commonisor(int n, int m) {
         int max = (n>=m)?n:m;
         int min = (n>=m)?m:n;
         int r = max % min;
         while(r != 0)
         {
             max = min;
             min = r;
             r = max % min;
         }
         return min;
     }
        //最小公倍数
     public static int commonmilt(int n, int m) {
         int commonisor = commonisor(n,m);
         int result = n / commonisor * m;
         return result;
     }
 public static void main(String[] args) {
     long a = System.currentTimeMillis();
     int n = 81;
     int m = 9;
     System.out.println("Commonisor of "+n+" and "+m+" is: "+commonisor(n,m));
     System.out.println("Commonmilt of "+n+" and "+m+" is: "+commonmilt(n,m));
     System.out.println(System.currentTimeMillis() - a);
 }
}


java每日小算法(6),布布扣,bubuko.com

java每日小算法(6)

标签:最小公倍数   package   算法   java   公约数   

原文地址:http://gomic.blog.51cto.com/8689134/1412582

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