C 練習實例53
題目:學習使用按位異或 ^。
程序分析:0^0=0; 0^1=1; 1^0=1; 1^1=0 。
程序源代碼:
// Created by o2fo.com on 15/11/9. // Copyright © 2015年 W3Cschool教程. 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; }
以上實例輸出結(jié)果為:
b 的值為 60 b 的值為 59
更多建議: