Computer Science, asked by kanakchaturvedi, 1 year ago

ALGORITHM for Fibonacci Series in C program

Answers

Answered by ashutoshrai230
8
1. Assign sum=0, A=0, B=1, i=1 2. Get the no. of terms upto which u want to generate the Fibonacci no, i.e., n. 3.Add A and B to get the next Fibonacci number 4. Assign the value of B to A i.e. A=B 5. Assign the value of sum to B i.e. B=sum 6. Write the value of sum to get next Fibonacci number in the series. 7. increment i with 1 i.e. i=i+1 and repeat step 3,4,5,6 with the lastvalue of i=n(n is the no. of terms which u wnt to generate Fibonacci no.series.)  8. stop
Similar questions