91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

怎么使用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
镇沅| 新营市| 江川县| 丹东市| 济源市| 高淳县| 绥芬河市| 阳城县| 陇南市| 江安县| 上杭县| 苗栗市| 淮南市| 色达县| 城市| 余姚市| 东阿县| 措美县| 山阳县| 三门县| 谷城县| 阿克苏市| 平陆县| 闵行区| 濮阳市| 永和县| 晴隆县| 南陵县| 斗六市| 墨竹工卡县| 博客| 洪雅县| 林甸县| 山东| 宾阳县| 将乐县| 高雄市| 曲阜市| 景宁| 明星| 邯郸县|