#include <stdio.h>

//位操作符&
//负数需要用补码算
//有0为0,全1则1
int main()
{
	int a = 3;
	int b = 5;
	int c = a & b;
	printf("%d\n",c);
	return 0;
}

位操作符&_&