MeehoweCK

Untitled

Aug 24th, 2019
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int n;
  8.     int i = 0, a, b = 0, c = 1;
  9.  
  10.     cin >> n;
  11.  
  12.     while(i < n)
  13.     {
  14.         cout << c << endl;
  15.         a = b;
  16.         b = c;
  17.         c = a + b;
  18.         ++i;
  19.     }
  20.  
  21.     return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment