You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include<bits/stdc++.h>
|
|
using namespace std;
|
|
|
|
int NumberOf21(int n) {
|
|
int count = 0;
|
|
int k = 1;
|
|
while (n != 0) {
|
|
count++;
|
|
n = (n - 1) & n;
|
|
}
|
|
return count;
|
|
}
|
|
|
|
|
|
int main() {
|
|
cout<<NumberOf21(1365765670)<<endl;
|
|
return 0;
|
|
}
|
|
|
|
|