标签:return include ali targe blank ref color print str
题目:学习使用按位或 |。
程序分析:0|0=0; 0|1=1; 1|0=1; 1|1=1 。
程序源代码:
1 #include<stdio.h> 2 int main() 3 { 4 int a,b; 5 a=077; 6 b=a|3; 7 printf("b 的值为 %d \n",b); 8 b|=7; 9 printf("b 的值为 %d \n",b); 10 return 0; 11 }
以上实例输出结果为:
b 的值为 63 b 的值为 63
感谢你的阅读,请用心感悟!希望可以帮到爱学习的你!!分享也是一种快乐!!!请接力。。。
标签:return include ali targe blank ref color print str
原文地址:https://www.cnblogs.com/kangyifan/p/13149629.html