Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // ConsoleApplication10.cpp: определяет точку входа для консольного приложения.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include <iostream>
  6.  
  7. using namespace std;
  8.  
  9. int main()
  10. {
  11. int a = 1;
  12. int b = 0;
  13. int n;
  14. int c = b;
  15. int i = 0;
  16. cin >> n;
  17. while (i<n)
  18. {
  19. c = b;
  20. b = a + c;
  21. a = c;
  22. cout << a;
  23. i++;
  24.  
  25. }
  26. return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement