⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fibonacciseries.cpp

📁 Fibonacci数的计算方法
💻 CPP
字号:
//=====================================
// title: Fibonacci数列
// author: cjj
// date: 2007-10-09
/* Description: 

*/
//=====================================
#include <iostream>
using namespace std;

int FabinacciSeries(int n);

int main()
{
	for (int n; cin >> n;)
	{
		if (n == 0)
			cout << 0 << endl;
		else
			cout << FabinacciSeries(n) << endl;
	}
	return 0;
}

int FabinacciSeries(int n)
{
	int resultValue;
	if (n == 1 || n == 2)
		resultValue = 1;
	else
		resultValue = FabinacciSeries(n - 1) + FabinacciSeries(n - 2);
	return resultValue;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -