我編碼在Eclipse斐波納契數列,這是我的代碼 -Fibonacci序列錯誤
public class FibonacciAlgorithm {
private int a = 0;
private int b = 1;
public FibonacciAlgorithm() {
}
public int increment() {
int temp = b;
b = a + b;
a = temp;
return value;
}
public int getValue() {
return b;
}
}
它顯示在return value;
行說value cannot be resolved to a variable
錯誤。我沒有看到任何其他錯誤。
我現在看到了,我會將'value'定義爲什麼? – Hartja
你可能想要返回b。 –