Guest User

Untitled

a guest
Feb 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4.     int N;
  5.     cout<<"Vyvedete razmer na masiva!\n";
  6.     cin>>N;
  7.     int i;
  8.     for(i=2; i<=N; i=i*2)
  9.     cout<<i<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
Add Comment
Please, Sign In to add comment