gpt4 book ai didi

Java 模运算符和 GCD

转载 作者:行者123 更新时间:2023-11-29 06:44:45 25 4
gpt4 key购买 nike

为什么这段代码给我的答案是 25?

public int findGcd() {
int num = this.num;
int den = this.den;

while (den != 0) {
int t = den;
den = num % den;
num = t;
}

return num;
}

这是主要方法:

public class FractionTest {
public static void main(String args[]) {
Fraction f = new Fraction();
f.num = 25;
f.den = 100;
f.findGcd();
}
}

任何人都可以向我提供所有程序如何运行或运行的完整过程吗?

最佳答案

因为 gcd(25, 100) = 25 可能

关于Java 模运算符和 GCD,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6924931/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com