SyntaxFix
Write A Post
Hire A Developer
Questions
countBits(x){ y=0; while(x){ y += x & 1 ; x = x >> 1 ; } }
thats it?