Untitled
unknown
plain_text
3 years ago
179 B
5
Indexable
#include <iostream>
using namespace std;
int main()
{
unsigned A = 13, B = 3, STEP = 1, a, b, c;
a = ~B;
b = A ^ B;
c = B >> STEP;
cout << a << "\n"<<b<<"\n"<<c;
}
Editor is loading...