Битовые операции




Task
Нахождение минимума из двух чисел без использования условного оператора.

C++
Write a program below
#include <iostream>
using namespace std;

int min(int x, int y)
{
	return y +    
}

int main()
{
	int x,y;
	cin >> x>>y;
	cout << min(x,y);
	return 0;
}
    
Your last submission is saved in the editor window.
     

Results:

All results: