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

递归求最大公约数

时间:2014-08-14 20:13:29      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   io   ar   div   log   

 
import java.io.IOException;
import java.util.Scanner;
public class CommonDivisor {
    public static void main(String[] args)throws IOException{
        try{
             System.out.println("请输入两个整数!");
                Scanner input = new Scanner(System.in);
                int x = input.nextInt();
                int y = input.nextInt();
                System.out.println("两个整数的最大公约数为:" + gcd(x,y));
        }
        catch(Exception ex){
            System.out.println("需要输入的数为整数!");
        }
    }
    public static int gcd(int m,int n){
        int result = 0;
        if(m % n ==0){
            result = n;
        }
        else
            result = gcd(n,m % n);
        return result;
        
    }

}

 


用递归,求两个整数的最大公约数。

递归求最大公约数,布布扣,bubuko.com

递归求最大公约数

标签:style   blog   color   java   io   ar   div   log   

原文地址:http://www.cnblogs.com/Amoxicil/p/3912997.html

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