c_cpp 斐波那契

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 斐波那契相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <bits/stdc++.h>

using namespace std;

int main() {
	int n;
	cin>>n;
	int a=0, b=1;
	cout<<a<<" "<<b<<" ";
	for (int i=1; i<n; i++){
	    int c = a + b;
        a = b;
        b = c;
        cout<<c<<" ";
    }
	return 0;
}

以上是关于c_cpp 斐波那契的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 斐波那契系列

c_cpp 斐波那契尾递归

c_cpp 斐波那契数列的.cpp

c_cpp 一行代码实现斐波那契数列

斐波那契数列

08《算法入门教程》递归算法之斐波那契数列