Advertisement
Guest User

test

a guest
Feb 25th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. #include <iostream>
  2. #include <Windows.h>
  3. // Побитовые операции
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8.     SetConsoleCP(1251); SetConsoleOutputCP(1251);
  9.     char flags = 5, // 101
  10.         mask = 4, // 100
  11.         res;
  12.  
  13.     res = flags ^ mask; // 001 в десятичной сис-ме = 1
  14.     cout << "Исключающее ИЛИ " << (int)res << endl;
  15.  
  16.     res = flags | mask; // 101
  17.     cout << "Дизъюнкция : " << (int)res << endl;
  18.  
  19.     res = flags & mask; // 100;
  20.     cout << "Конъюнкция : " << (int)res << endl;
  21.  
  22.     res  = ~flags; // 010
  23.     cout << "Инверсия :  " << (int)res << endl;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement