第21185题 单选
当输入为2023时,下列C++程序的输出结果是
#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;
}
A

7

B

8

C

9

D

11

提交0次 正确率0.00%
答案解析