The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
October 2001

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

Java or JavaScript?

Posted by Tony on October 29, 2001 at 6:53 AM

If its in Java it would be:
----------------------------------------------
private static int fib(int n)
{
int fib, nextfib;

fib = 0;
nextfib = 1;

for (int i = 0; i < n; i++)
{
nextfib = nextfib + fib;
fib = nextfib - fib;
}
return fib;
}
-----------------------------------------
Otherwise sorry, haven't done JavaScripting yet.

hth

tm





Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us