#include "stdio.h" main() { int a,b; a=077; b=a&3; PRintf("/40: The a & b(decimal) is %d /n",b); b&=7; printf("/40: The a & b(decimal) is %d /n",b); } 【程序52】
题目:学习使用按位或 。
1.程序分析:00=0; 01=1; 10=1; 11=1
2.程序源代码:
#include "stdio.h" main() { int a,b; a=077; b=a3; printf("/40: The a & b(decimal) is %d /n",b); b=7; printf("/40: The a & b(decimal) is %d /n",b); } 【程序53】
题目:学习使用按位异或 ^ 。
1.程序分析:0^0=0; 0^1=1; 1^0=1; 1^1=0
2.程序源代码:
#include "stdio.h" main() { int a,b; a=077; b=a^3; printf("/40: The a & b(decimal) is %d /n",b); b^=7; printf("/40: The a & b(decimal) is %d /n",b); } 更多内容请看C/C++进阶技术文档 Wlan组网----家庭专题专题,或 【程序54】