欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

欧几里得算法求两个整数的最大公约数 博客分类: 技术

程序员文章站 2024-03-19 11:21:52
...
public class MaxNum {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println(gcd(6,12));
}
    public static int gcd(int a,int b){
    if(b ==0) return a;
    return gcd(b,a%b);
    }
}