共計(jì) 366 個(gè)字符,預(yù)計(jì)需要花費(fèi) 1 分鐘才能閱讀完成。
可以使用以下方法來求兩個(gè)數(shù)的最大公約數(shù):
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;
}
}
運(yùn)行以上代碼,輸出為:
The greatest common divisor of 24 and 36 is 12
丸趣 TV 網(wǎng) – 提供最優(yōu)質(zhì)的資源集合!
正文完