^ 演算子を使ってみる (C++)
C++
Published: 2019-09-30

やったこと

^ 演算子 (排他的論理和) を使ってみます。

確認環境

$ g++ --version
g++ (Homebrew GCC 9.2.0) 9.2.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

調査

xor.cpp

#include <bits/stdc++.h>
using namespace std;

int main() {
    // 0b -> 2進数を表す
    int a =  0b11010110;
    int b =  0b01110101;

    cout << std::bitset<8>(a ^ b) << "\n";
}

出力結果

10100011

参考