标签:
int bitAnd(int x, int y) { return ~((~x) | (~y)); }
根据德摩根律
实验一
原文地址:http://www.cnblogs.com/autoria/p/5572738.html