#include <stdio.h>
void main()
{
int a, b, c, i, n;
a = 0;
b = 1;
printf("Enter a number to define the length of fibonacci series: ");
scanf("%d", &n);
printf("\nThe Series is: \n");
printf("%d\t%d", a, b);
for (i = 0; i < n; i++)
{
c = a + b;
a = b;
b = c;
printf("\t%d", c);
}
getch();
}
/*-via Programming Hub for Android, a top rated Programming App on Google Play
https://play.google.com/store/apps/details?id=com.freeit.java*/
Sunday, August 16, 2015
Program: Fibonacci Series
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment