Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Going to offer myself for the slaughter here.

Have checked the other questions avail, and can't seem to find the cause of my IndexOutOfRange exception for the following code:

public static int fib2(int n)
    {
        int[] fibarray = new int[n];

        if (n == 0) return 0;

            fibarray[0] = 0;
            fibarray[1] = 1;

            for (int i = 2; i < n; i++)
            {
                fibarray[i] = fibarray[i - 1] + fibarray[i - 2];

            }

            return fibarray[n];

     }

It's something really stupid I'm sure but it's driving me loopy (pun intended)...

share|improve this question
tracing this in debug would tell you exactly what the problem is, try with n = 1 – PeskyGnat Jun 11 '12 at 12:35

1 Answer

up vote 4 down vote accepted

That's the last line!

return fibarray[n];

Your last index in your table is n-1, not n.

Update

And like Attila said, if n=1, the line

fibarray[1] = 1;

will also make a IndexOutOfRange

share|improve this answer
1  
Also, fibarray[1] = 1; is only valid if n>=2 – Attila Jun 11 '12 at 12:34
Yep indeed, i'll add this. Thanks ! – wishper Jun 11 '12 at 12:36
Makes sense now. Cheers. – Taniq Jun 11 '12 at 13:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.