生成斐波那契三角形的C++程序

【生成斐波那契三角形的C++程序】在该程序中, 我们从用户处获得斐波那契三角形极限的输入, 并打印给定次数(极限)的斐波那契系列。
让我们看一下生成斐波那契三角形的C ++示例。

#include < iostream> using namespace std; int main() { int a=0, b=1, i, c, n, j; cout< < "Enter the limit: "; cin> > n; for(i=1; i< =n; i++) { a=0; b=1; cout< < b< < "\t"; for(j=1; j< i; j++) { c=a+b; cout< < c< < "\t"; a=b; b=c; } cout< < "\n"; } return 0; }

输出:
Enter the limit: 10 1 11 112 1123 11235 112358 11235813 1123581321 112358132134 11235813213455

    推荐阅读