#include<stdio.h>
#include<conio.h>
int main()
{
int first,second,sum,num,counter=0;
clrscr();
printf("Enter the term : ");
scanf("%d",&num);
printf("\nEnter First Number : ");
scanf("%d",&first);
printf("\nEnter Second Number : ");
scanf("%d",&second);
printf("\nFibonacci Series : %d %d ",first,second);
while(counter< num)
{
sum=first+second;
printf("%d ",sum);
first=second;
second=sum;
counter++;
}
getch();
}
Output :
Enter the term : 5 Enter First Number : 1 Enter Second Number : 3 Fibonacci Series : 1 3 4 7 11 18 29



0 Comments:
Post a Comment
Your Feedback :This is Growing Site and Your Feedback is important for Us to improve the Site performance & Quality of Content.Feel Free to contact and Please Provide Name & Contact Email