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

JAVA常见算法题(六)

时间:2017-06-05 22:19:19      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:code   ret   else   print   最大   static   oid   公约数   算法   

package com.xiaowu.demo;

/**
 * 输入两个正整数m和n,求其最大公约数和最小公倍数。
 * 
 * @author WQ
 *
 */
public class Demo6 {
    public static void main(String[] args) {
        int a = 5;
        int b = 10;
        int max = f(a, b);
        int min = a * b / max;
        System.out.println("最大公约数:" + max + " 最小公倍数:" + min);
    }

    public static int f(int x, int y) {
        int t;
        if (x < y) {
            t = x;
            x = y;
            y = t;
        }
        while (y != 0) {
            if (x == y) {
                return x;
            } else {
                int k = x % y;
                x = y;
                y = k;
            }
        }
        return x;
    }
}

 

JAVA常见算法题(六)

标签:code   ret   else   print   最大   static   oid   公约数   算法   

原文地址:http://www.cnblogs.com/mr-wuxiansheng/p/6947106.html

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