Generally, there are some rules:
Dream.In.Code has a policy by which we prefer to see a good faith effort on your part before providing source code for homework assignments. Please post the code you have written in an effort to resolve the problem, and our members would be happy to provide some guidance. Be sure to include a description of any errors you are encountering as well.
Please post like this:

Thank you for helping us helping you.
But I've got nothing better to do, so...:
cpp
#include <iostream>
using namespace std;
// born2c0de's recursive fibonacci method
long fib(unsigned long n) {
if (n <= 1) {
return n;
} else {
return fib(n-1)+fib(n-2);
}
}
int main() {
cout << "How big do you want the sequence to be?\t";
int input;
cin >> input;
int fibonacci[input];
for (int i = 0; i < input; i++) {
fibonacci[i] = fib(i);
}
for (int i = 0; i < input; i++) {
cout << fibonacci[i] << " ";
}
cin.get();
return EXIT_SUCCESS;
}