Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

โปรแกรม C เพื่อค้นหาอนุกรมฟีโบนักชีสำหรับตัวเลขที่กำหนด


อนุกรมฟีโบนักชีคือลำดับของตัวเลขที่ได้จากการบวกตัวเลขสองตัวก่อนหน้า

อนุกรมฟีโบนักชีเริ่มต้นจากสองตัวเลข f0 &f1

ค่าเริ่มต้นของ fo &f1 สามารถรับได้ 0, 1 หรือ 1, 1Fibonacci series เป็นไปตามเงื่อนไขต่อไปนี้ -

fn =fn-1 + fn-2

อัลกอริทึม

อ้างถึงอัลกอริทึมสำหรับอนุกรมฟีโบนักชี

START
Step 1: Read integer variable a,b,c at run time
Step 2: Initialize a=0 and b=0
Step 3: Compute c=a+b
Step 4: Print c
Step 5: Set a=b, b=c
Step 6: Repeat 3 to 5 for n times
STOP

ตัวอย่าง

ต่อไปนี้เป็นโปรแกรม C สำหรับชุดฟีโบนักชีโดยใช้ While Loop −

#include <stdio.h>
int main(){
   int number, i = 0, Next, first = 0, second = 1;
   printf("\n Please Enter the Range Number: ");
   scanf("%d",&number);
   while(i < number){
      if(i <= 1){
         Next = i;
      }
      else{
         Next = first + second;
         first = second;
         second = Next;
      }
      printf("%d \t", Next);
      i++;
   }
   return 0;
}

ผลลัพธ์

เมื่อโปรแกรมข้างต้นทำงาน มันจะให้ผลลัพธ์ดังต่อไปนี้ −

Please Enter the Range Number: 6
0 1 1 2 3 5