⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex3_03.cpp

📁 一本语言类编程书籍
💻 CPP
字号:
// Exercise 3.3 Using a bitwise operator to affect the binary representation of an integer.
// The simplest way to invert the last bit of a number is to exclusive-OR the number with 1.
// The effect of changing the value of the last bit may depend on your computer,
// but on mine this program adds 1 to an even integer, and subtracts 1 from an odd integer.

#include <iostream>
using std::cin;
using std::cout;
using std::endl;

int main() {
  const int maskValue = 1;

  int value = 0;
  int result = 0;

  cout << "Please enter an integer value: ";
  cin >> value;

  result = value ^ maskValue;
  cout << "The value of " << value << " with its lowest bit inverted is " 
       << result << endl;

  return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -