Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int fibonacci(int n)
- {
- if(n <= 2)
- return 1;
- return fibonacci(n - 1) + fibonacci (n - 2);
- // UWAGA: w tym konkretnym przypadku rekurencja nie jest rozwiązaniem efektywnym!
- }
- int main()
- {
- int n;
- cin >> n;
- for(int i = 1; i <= n; ++i)
- cout << fibonacci(i) << '\t';
- cout << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment