二十五岁时我们都一样愚蠢、多愁善感,喜欢故弄玄虚,可如果不那样的话,五十岁时也就不会如此明智。
标题:C 练习实例53
C 练习实例53
题目: 学习使用按位异或 ^。
程序分析: 0^0=0; 0^1=1; 1^0=1; 1^1=0 。
程序源代码:
// Created by www.codingdict.com on 15/11/9. // Copyright © 2013年 编程字典. 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