斐波那契数列C++完整代码
时间: 2023-09-11 20:06:21 浏览: 115
斐波那契数列的C++代码
5星 · 资源好评率100%
以下是斐波那契数列的完整 C++ 代码:
```
#include <iostream>
using namespace std;
int main()
{
int n;
cout << "Enter the number of terms: ";
cin >> n;
int first = 0, second = 1, next;
cout << "Fibonacci Series: ";
for (int i = 0; i < n; i++)
{
if (i <= 1)
next = i;
else
{
next = first + second;
first = second;
second = next;
}
cout << next << " ";
}
return 0;
}
```
在此代码中,我们使用了一个 for 循环和几个变量来计算斐波那契数列。我们首先要求用户输入要计算的项数,然后使用两个变量 first 和 second 来存储前两个斐波那契数。在循环中,我们计算下一个斐波那契数并将其打印出来。
阅读全文