以下是我的代碼。我試圖打印斐波那契遞歸函數[在最後],但它給了我段錯誤。我的代碼有什麼問題?我花了3個小時在這個,並無法弄清楚。有人可以請客氣,給我一些幫助?由於C++遞歸Febonacci函數
int fibonacci (int x) {
if (x == 0) {
return 0;
}
else if (x == 1) {
return 1;
}
else {
return (fibonacci(x-1) + fibonacci (x + 2));
}
}
凡(又名,什麼線),你得到的賽格故障? – Krease
斐波那契函數適用於打印。 – NewFile