Program describes an easy way to find the Fibonacci numbers below a given number.
Logic: Fibonacci numbers are the the numbers fall on the Fibonacci series, which grows up accord to Fibonacci rule. The rule is that, the present number in the series is the sum of past number and the number before last. The series starts from 0, and the 2nd term is 1.
Mathematically,
F(n+1) = F(n) + F(n-1) // F(1) =0 and F(2) = 1
Programmatically, that is what exactly we are doing. The while loop traces till the upper limit. In each iteration we keep a flag to store last to iteration results to proceed to the next.
To find the fibonacci numbers below a given number.
#include<stdio.h>
void main()
{
int lim_up, A = 0, B = 1, C;
clrscr();
printf(“nnt ENTER THE UPPER LIMIT…: “);
scanf(“%d”, &lim_up);
printf(“nnt FIBONACCI NUMBERS ARE…: “);
while(A<lim_up)
{
printf(“nnttt%d”, A);
C = A + B;
A = B;
B = C;
}
getch();
}
Download exe and source code here.
Description :
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Submit #Terms of Use
Copyright©2011 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com | Powered by Dhyeya