C++ 兔子算法(在visual studio已亲测,无任何问题。)

求Fibonacci数列前40个数。这个数列有如下特点:第1、2个数为1、1。从第3个数开始,每个数是其前面两个数之和。即
F1=1           (n=1)
F2=1           (n=2)
Fn=Fn-1+Fn-2   (n≥3)

 

// ConsoleApplication4.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include 
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	//设置两个初始值此时a=1,b=1
	int a=1,b=1;
	//输出初始值
	cout<

 

你可能感兴趣的:(C++ 兔子算法(在visual studio已亲测,无任何问题。))