Advertisement
Guest User

prim_fibonacci

a guest
Dec 6th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {int n,i;
  6. long long int v[]={1,1,3,5,13,89,233,1597,28657,514229,433494437,2971215073};
  7.  
  8. cin>>n;
  9.  
  10. for(i=n-1;i>=0;i--)
  11. cout<<v[i]<<" ";
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement