Untitled
Anonymous
plain_text
11/17/2022 5:26 PM
340 B
13
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...