中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

怎么使用java求最大公約數

小億
201
2024-05-24 10:28:08
欄目: 編程語言

可以使用以下方法來求兩個數的最大公約數:

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

0
合水县| 贵定县| 泽州县| 临沧市| 阿荣旗| 阿尔山市| 漠河县| 讷河市| 兴化市| 九江县| 平阴县| 洱源县| 吉林省| 成武县| 屏东县| 南澳县| 云林县| 鄂温| 宽城| 玉龙| 喀什市| 任丘市| 白城市| 沐川县| 新兴县| 望城县| 永康市| 大宁县| 垣曲县| 库尔勒市| 昆明市| 郁南县| 曲阜市| 连江县| 光泽县| 稻城县| 安新县| 苍梧县| 彰化县| 秦皇岛市| 枣庄市|