返回列表 發帖

【10-2】位元運算子 (二)

你能推算出下列幾個位元運算的結果為何嗎?
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     cout<<(3 | 4)<<endl;
  6.     cout<<(5 & 6)<<endl;
  7.     cout<<(6 ^ 7)<<endl;
  8.     cout<<(2 | 8)<<endl;
  9.     cout<<(7 & 10)<<endl;
  10.     cout<<(9 ^ 10)<<endl;
  11.     return 0;
  12. }
  13. /*
  14. 00000000  0
  15. 00000001  1
  16. 00000010  2
  17. 00000011  3
  18. 00000100  4
  19. 00000101  5
  20. 00000110  6
  21. 00000111  7
  22. 00001000  8
  23. 00001001  9
  24. 00001010 10
  25. */
複製代碼

返回列表