C 語言基礎(chǔ)教程

C 語言流程控制

C 語言函數(shù)

C 語言數(shù)組

C 語言指針

C 語言字符串

C 語言結(jié)構(gòu)體

C 語言文件

C 其他

C 語言參考手冊

C程序顯示斐波那契數(shù)列

C 語言編程實例大全

在此示例中,您將學(xué)習(xí)顯示前n個數(shù)字的斐波那契數(shù)列(由用戶輸入)。

要理解此示例,您應(yīng)該了解以下C語言編程主題:

斐波那契數(shù)列是下一個項是前兩個項之和的序列。 斐波那契數(shù)列的前兩個項是0,然后是1。

The Fibonacci sequence: 0, 1, 1, 2, 3, 5, 8, 13, 21

斐波那契數(shù)列的n項

#include <stdio.h>
int main() {
    int i, n, t1 = 0, t2 = 1, nextTerm;
    printf("Enter the number of terms: ");
    scanf("%d", &n);
    printf("斐波納契數(shù)列: ");
    for (i = 1; i <= n; ++i) {
        printf("%d, ", t1);
        nextTerm = t1 + t2;
        t1 = t2;
        t2 = nextTerm;
    }

    return 0;
}

輸出結(jié)果

Enter the number of terms: 10
斐波納契數(shù)列: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34,

斐波那契數(shù)列直到一定數(shù)目

#include <stdio.h>
int main() {
    int t1 = 0, t2 = 1, nextTerm = 0, n;
    printf("Enter a positive number: ");
    scanf("%d", &n);

    //顯示前兩個項,始終為0和1
    printf("Fibonacci Series: %d, %d, ", t1, t2);
    nextTerm = t1 + t2;

    while (nextTerm <= n) {
        printf("%d, ", nextTerm);
        t1 = t2;
        t2 = nextTerm;
        nextTerm = t1 + t2;
    }

    return 0;
}

輸出結(jié)果

Enter a positive integer: 100
Fibonacci Series: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89,

C 語言編程實例大全

丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清