的價值,我有以下代碼:打印出來的Java方法
public class GCD {
public static int GCD(int m, int n){
if (n==0) return m;
callCount(1);
return GCD(n,m%n);
}
public static int callCount(int n){
int s = 0;
s+=n;
return s;
}
public static void main(String[] args) {
callCount(0);
System.out.println(GCD(10, 15));
System.out.println(callCount());
}
}
一旦GCD已經完成,我想打印出來GCD了多少次與方法callCount調用。我想我打算完全錯誤的callcount。
是的。我試圖打印出通過GCD的次數,但我不確定正確的方法。 – Softey
如果需要,你可以使用'BigInteger':https://stackoverflow.com/a/4009230/2591612 – Brian