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

最简单的求最大公约数和最小公倍数的方法

时间:2015-08-25 13:03:25      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

public class Main{
 /**
  * @param args
  */
 public static void main(String[] args) {
  // TODO Auto-generated method stub
  Scanner scan = new Scanner(System.in);
  int n,m;
  while(scan.hasNext()){
   n = scan.nextInt();
   m = scan.nextInt();
   System.out.println(lcm(n,m));
  }
  scan.close();
  
 }
 
 //求最大公约数,辗转相除法
 static int gcd(int n,int m){
  
  if(n<=0||m<=0)
   return 0;
  int a = Integer.max(n, m);
  int b = Integer.min(n, m);
  
  while(b!=0){
   int temp = a;
   a = b;
   b = temp%b;
  }
  return a;
  
 }
 
 //最小公倍数*最大公约数=n*m
 static int lcm(int n,int m){
  int gcd = gcd(n,m);
  int product = n*m;
  return product/gcd;
  
 }
}

最简单的求最大公约数和最小公倍数的方法

标签:

原文地址:http://my.oschina.net/u/2400412/blog/496546

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