Fibonacci序列代碼放在這裏我寫這篇斐波那契數列的Javascript代碼有什麼問題?
function fibonnica(g) {
var result, n;
if (g == 1) {
return g; //if enterd no is 1 then 1 that is very apparent
} else {
result = g; //7
n = g - 1; //6
while (n > 0) {
result *= n ///7*6 second time 7*5 and so on..
n = n - 1; //n=5
}
return result;
}
}
console.log(fibonnica(7)); //why 7 is the output
請只告訴錯誤不解決,我想強迫自己
你'而(N <0){'錯字我猜! –
其實這不是斐波那契數列而不是階乘計算 – myxobek
對不起,但它不在其他網頁的控制檯中工作,我不知道爲什麼。 –