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

最大公约数

时间:2017-12-21 21:41:38      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:bre   .com   body   col   scanner   ring   oid   ext   最大公约数   

示例展示:

public static void main(String[] args) {
        for(int i=0;;i++) {
            Scanner input = new Scanner(System.in);
            System.out.println("请输入第一个数字:");
            int a = input.nextInt();
            System.out.println("请输入第二个数字:");
            int b = input.nextInt();
            System.out.println(max(a, b) + " 是它们的最大公约数");
        }
    }
    
    /**
     * 两个数的最大公约数
     * @param m
     * @param n
     * @return
     */
    public static Object max(int m, int n) {
        int min = m<n?m:n;
        for(int i=min; i>=2; i--) {
            if(n%i==0 && m%i==0) {
                System.out.print(i);
                break;
            }
        }
        return "";
    }

结果展示:

技术分享图片

其中,有一些的需要改进的地方。望谅解!

最大公约数

标签:bre   .com   body   col   scanner   ring   oid   ext   最大公约数   

原文地址:http://www.cnblogs.com/superdrew/p/8082452.html

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