Untitled
unknown
plain_text
3 years ago
255 B
3
Indexable
#include <iostream> using namespace std; int main() { unsigned char A = 12, B = 7, STEP = 2; int asas = A ^ B; cout << asas << " "; int sasa = A | B; cout << sasa << " "; int limonchikPVP = A << STEP; cout << limonchikPVP << " "; }
Editor is loading...