logo

سلسلة فيبوناتشي في C

سلسلة فيبوناتشي في C: في حالة سلسلة فيبوناتشي، الرقم التالي هو مجموع الرقمين السابقين على سبيل المثال 0، 1، 1، 2، 3، 5، 8، 13، 21 وما إلى ذلك. أول رقمين من سلسلة فيبوناتشي هما 0 و1.

سلسلة جافا إلى كثافة العمليات

هناك طريقتان لكتابة برنامج سلسلة فيبوناتشي:

  • سلسلة فيبوناتشي بدون تكرار
  • سلسلة فيبوناتشي باستخدام العودية

سلسلة فيبوناتشي في لغة C بدون تكرار

دعونا نرى برنامج سلسلة فيبوناتشي في لغة C بدون العودية.

 #include int main() { int n1=0,n2=1,n3,i,number; printf('Enter the number of elements:'); scanf('%d',&number); printf('
%d %d&apos;,n1,n2);//printing 0 and 1 for(i=2;i<number;++i) 0 1 2 loop starts from because and are already printed { n3="n1+n2;" printf(' %d',n3); n1="n2;" n2="n3;" } return 0; < pre> <p> <strong>Output:</strong> </p> <pre> Enter the number of elements:15 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 </pre> <h2>Fibonacci Series using recursion in C</h2> <p>Let&apos;s see the fibonacci series program in c using recursion.</p> <pre> #include void printFibonacci(int n){ static int n1=0,n2=1,n3; if(n&gt;0){ n3 = n1 + n2; n1 = n2; n2 = n3; printf(&apos;%d &apos;,n3); printFibonacci(n-1); } } int main(){ int n; printf(&apos;Enter the number of elements: &apos;); scanf(&apos;%d&apos;,&amp;n); printf(&apos;Fibonacci Series: &apos;); printf(&apos;%d %d &apos;,0,1); printFibonacci(n-2);//n-2 because 2 numbers are already printed return 0; } </pre> <p> <strong>Output:</strong> </p> <pre> Enter the number of elements:15 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 </pre> <hr></number;++i)>

سلسلة فيبوناتشي باستخدام العودية في C

دعونا نرى برنامج سلسلة فيبوناتشي في لغة C باستخدام العودية.

 #include void printFibonacci(int n){ static int n1=0,n2=1,n3; if(n&gt;0){ n3 = n1 + n2; n1 = n2; n2 = n3; printf(&apos;%d &apos;,n3); printFibonacci(n-1); } } int main(){ int n; printf(&apos;Enter the number of elements: &apos;); scanf(&apos;%d&apos;,&amp;n); printf(&apos;Fibonacci Series: &apos;); printf(&apos;%d %d &apos;,0,1); printFibonacci(n-2);//n-2 because 2 numbers are already printed return 0; } 

انتاج:

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