#4407. [GESP202512 八级 C++] 第 14 题
[GESP202512 八级 C++] 第 14 题
当输入 2023 时,下列程序的输出结果为( )。
#include <iostream>
using namespace std;
int main() {
int x, ans = 0;
cin >> x;
while (x != 0) {
x -= x & -x;
ans++;
}
cout << ans << endl;
return 0;
}
{{ select(1) }}
78911