0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

#概要

mindが謎なので調べてみた。
vistaに入れた。
xorの真理値表、書いてみた。

#サンプルコード

メインとは
 Aは 変数
 Bは 変数
 「A B C」を 一行表示し
 Aに 0を 入れ Bに 0を 入れ 「0 0 」を 表示し Aと Bを XORして 数値表示し 改行し
 Aに 0を 入れ Bに 1を 入れ 「0 1 」を 表示し Aと Bを XORして 数値表示し 改行し
 Aに 1を 入れ Bに 0を 入れ 「1 0 」を 表示し Aと Bを XORして 数値表示し 改行し
 Aに 1を 入れ Bに 1を 入れ 「1 1 」を 表示し Aと Bを XORして 数値表示し


#結果



A B C
0 0 0
0 1 1
1 0 1
1 1 0

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?