So I wrote a recursive program that asks the user now many Fibonacci numbers they would like to execute. The problem I'm having is that after the 45th number, it gives me a number with a "-" and its a number that doesn't fit into the sequence. How can I change that to give me the proper number? Here is the recursive part of the code that executes the calculation:
void fibonacci (int a, int b, int n, int count)
{
if(n < count)
{
cout<<a+b<<endl;
fibonacci(b, a+b, n+1, count);
}
}
here's the output of the sequence:
How many numbers do you want the Fibonacci sequence to process: 50
The starting numbers for the sequence are: 0, 1
1
2
3
5
8
13
21
34
55
89
144
233
377
610
987
1597
2584
4181
6765
10946
17711
28657
46368
75025
121393
196418
317811
514229
832040
1346269
2178309
3524578
5702887
9227465
14930352
24157817
39088169
63245986
102334155
165580141
267914296
433494437
701408733
1134903170
1836311903
-1323752223
512559680
-811192543
-298632863
-1109825406
What changes do I need to make in order for it to change the -#'s to the real numbers?