首页主机资讯怎么使用java求最大公约数

怎么使用java求最大公约数

时间2024-06-08 22:56:03发布访客分类主机资讯浏览660
导读:可以使用以下方法来求两个数的最大公约数: public class Main { public static void main(String[] args { int num1 = 24; int...

可以使用以下方法来求两个数的最大公约数:

public class Main {

    public static void main(String[] args) {
    
        int num1 = 24;
    
        int num2 = 36;
    
        int gcd = findGCD(num1, num2);
    
        
        System.out.println("The greatest common divisor of " + num1 + " and " + num2 + " is " + gcd);

    }

    
    public static int findGCD(int num1, int num2) {

        while (num2 != 0) {
    
            int temp = num2;
    
            num2 = num1 % num2;
    
            num1 = temp;

        }
    
        
        return num1;

    }

}
    

运行以上代码,输出为:

The greatest common divisor of 24 and 36 is 12

声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!


若转载请注明出处: 怎么使用java求最大公约数
本文地址: https://pptw.com/jishu/678141.html
C语言怎么将字符串转化为数字 C语言如何计算字符串长度

游客 回复需填写必要信息