Advertisement
Mihai_Preda

Untitled

Mar 3rd, 2021
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int a, n;
  8.     cin >> n;
  9.     a=2;
  10.     while (a<=2*n)
  11.     {
  12.         cout << a << " ";
  13.         a=a+2;
  14.     }
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement