以下是一個用C++編寫的斐波那契數列代碼示例:
#include <iostream>
int fibonacci(int n) {
if (n <= 1) {
return n;
} else {
return fibonacci(n - 1) + fibonacci(n - 2);
}
}
int main() {
int n;
std::cout << "Enter the number of terms in the Fibonacci sequence: ";
std::cin >> n;
for (int i = 0; i < n; i++) {
std::cout << fibonacci(i) << " ";
}
return 0;
}
這段代碼首先定義了一個遞歸函數fibonacci
來計算斐波那契數列的第n個數。然后在main
函數中,用戶輸入要計算的斐波那契數列的項數,然后使用循環依次輸出前n項的斐波那契數列。