Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. int main(){
  2.     int a;
  3.     cin >> a;
  4.     int counter = 0;
  5.     while(a!=0){
  6.         if (a%2 == 1) counter++;
  7.         a /= 2;
  8.     }
  9.     cout << counter;
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement