in reply to Re: Fibonacci numbers
in thread Fibonacci numbers

I agree with jeroenes. This is very possible to do.

Replies are listed 'Best First'.
Re: Re: Re: Fibonacci numbers
by premchai21 (Curate) on Oct 02, 2001 at 01:04 UTC
    Yes, it is. To reduce the problem size, the following program is likely to eventually print out any Fibonacci numbers between 0 and N-1, where N is the command line argument. In order, even. However, you must find them buried in all the other numbers, and it will take an indeterminate amount of time. It will not stop upon hitting a sequence of fibonacci numbers. (Hint: The output is random.)
    #!/usr/bin/perl -w use strict;my$N=$_[0];$\=' ';for (;;){print int rand$N}