Untitled

 avatar
unknown
plain_text
3 years ago
236 B
4
Indexable
#include <iostream>
using namespace std;
int main()
{
	unsigned short A = 13, B = 3, STEP = 1,C=0;
	C += ~B;
	cout << C << "\n";
	C = 0;
	C += A ^ B;
	cout << C << "\n";
	C = 0;
	C += B >> STEP;
	cout << C << "\n";
	

}
Editor is loading...