標題:
位元運算子 (二)
[打印本頁]
作者:
tonyh
時間:
2021-5-8 14:54
標題:
位元運算子 (二)
你能推算出下列幾個位元運算的結果為何嗎?
public class Ch01 {
public static void main(String[] args) {
System.out.println(3 | 4);
System.out.println(5 & 6);
System.out.println(6 ^ 7);
System.out.println(2 | 8);
System.out.println(7 & 10);
System.out.println(9 ^ 10);
}
}
/*
00000000 0
00000001 1
00000010 2
00000011 3
00000100 4
00000101 5
00000110 6
00000111 7
00001000 8
00001001 9
00001010 10
*/
複製代碼
作者:
蔡幸融
時間:
2021-5-15 14:03
public class Ch02 {
public static void main(String[] args) throws Exception {
System.out.println(3 | 4);
System.out.println(5 & 6);
System.out.println(6 ^ 7);
System.out.println(2 | 8);
System.out.println(7 & 10);
System.out.println(9 ^ 10);
}
}
複製代碼
作者:
林侑成
時間:
2021-5-15 14:10
public class CH01 {
public static void main(String[] args) {
System.out.println(3 | 4);
System.out.println(5 & 6);
System.out.println(6 ^ 7);
}
}
複製代碼
作者:
陳智鈞
時間:
2021-5-15 15:58
public class Ch01 {
public static void main(String[] args) {
System.out.println(3|4);
System.out.println(5&6);
System.out.println(6 ^ 7);
System.out.println(2 | 8);
System.out.println(7 & 10);
System.out.println(9 ^ 10);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2