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

โปรแกรม C++ เพื่อค้นหาหมายเลขฟีโบนักชีโดยใช้การเรียกซ้ำ


ต่อไปนี้เป็นตัวอย่างอนุกรมฟีโบนักชีโดยใช้การเรียกซ้ำ

ตัวอย่าง

#include <iostream>
using namespace std;
int fib(int x) {
   if((x==1)||(x==0)) {
      return(x);
   }else {
      return(fib(x-1)+fib(x-2));
   }
}
int main() {
   int x , i=0;
   cout << "Enter the number of terms of series : ";
   cin >> x;
   cout << "\nFibonnaci Series : ";
   while(i < x) {
      cout << " " << fib(i);
      i++;
   }
   return 0;
}

ผลลัพธ์

Enter the number of terms of series : 15
Fibonnaci Series : 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377

ในโปรแกรมข้างต้น รหัสจริงมีอยู่ในฟังก์ชัน 'fib' ดังนี้ −

if((x==1)||(x==0)) {
   return(x);
}else {
   return(fib(x-1)+fib(x-2));
}

ในฟังก์ชัน main() ผู้ใช้ป้อนเงื่อนไขจำนวนหนึ่งและเรียก fib() อนุกรมฟีโบนักชีพิมพ์ดังนี้

cout << "Enter the number of terms of series : ";
cin >> x;
cout << "\nFibonnaci Series : ";
while(i < x) {
   cout << " " << fib(i);
   i++;
}