28 lines
606 B
C++
28 lines
606 B
C++
// 将一个数的二进制表示中从第 n 位(从右往左数)开始的 m 位设为 0。
|
|
#include <iostream>
|
|
#include <bitset>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
int x;
|
|
cout << "请输入一个整数: ";
|
|
cin >> x;
|
|
cout << "原来的二进制表示为: " << bitset<32>(x) << endl;
|
|
|
|
int n, m;
|
|
cout << "请输入第 n 位(从右往左数): ";
|
|
cin >> n;
|
|
cout << "请输入要设为 0 的位数: ";
|
|
cin >> m;
|
|
|
|
while (m--)
|
|
{
|
|
x &= ~(1 << n);
|
|
n++;
|
|
}
|
|
cout << "设为 0 后的二进制表示为: " << bitset<32>(x) << endl;
|
|
|
|
return 0;
|
|
} |