answersLogoWhite

0


Best Answer

what? Assuming you wanted an algorithm to find the nth number in the Fibonacci sequence:

double Fib(int i)

{

double x = 1;

double y = 1;

if (i

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you calculate the nth term in the Fibonacci sequence using C?
Write your answer...
Submit
Still have questions?
magnify glass
imp