C 语言练习范例 53
题目
学习使用按位异或 ^
程序分析
0^0=0; 0^1=1; 1^0=1; 1^1=0
程序代码
/** * file: main.c * author: 简单教程(www.twle.cn) * * Copyright © 2015-2065 www.twle.cn. All rights reserved. */ #include <stdio.h> int main() { int a,b; a=077; b=a^3; printf("b 的值为 %d \n",b); b^=7; printf("b 的值为 %d \n",b); return 0; }
运行结果
运行以上代码,输出结果为
b 的值为 60 b 的值为 59