Untitled

 avatar
unknown
c_cpp
a year ago
302 B
4
Indexable
#include <iostream>
using namespace std;
#include <SFML/Graphics.hpp>
#include <conio.h>
#include <stdio.h>
#include <cstdlib> 
#include <time.h> 


int main()
{
	int a = 13;

	int b = 3;

	int step = 1 ;

	cout << ~b << '\n';

	cout << (a ^ b) << '\n';

	cout << (b >> step);

}
Editor is loading...
Leave a Comment