answersLogoWhite

0

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

16y ago

What else can I help you with?