怎么使用java求最大公约数

   2024-10-13 4640
核心提示:可以使用以下方法来求两个数的最大公约数:public class Main {public static void main(String[] args) {int num1 = 24;int num

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

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

 
举报打赏
 
更多>同类维修大全
推荐图文
推荐维修大全
点击排行

网站首页  |  关于我们  |  联系方式网站留言    |  赣ICP备2021007278号