#include <stdio.h>
int main() {
int count, n, t1=0, t2=1, display=0;
printf("Enter number of terms: ");
scanf("%d",&n);
/* Displaying first two terms */
printf("Fibonacci Series: %d+%d+", t1, t2);
count=2;
/* count=2 because first two terms are already displayed. */
while (count<n) {
//add first two
display=t1+t2;
//set first no. value to second
t1=t2;
//set second no. value to result of addition
t2=display;
//increment count
++count;
printf("%d+",display);
}
return 0;
}
Tuesday, February 10, 2015
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment