Skip to content

Commit 500ae0a

Browse files
author
Justin Lin
committed
新增勘誤
1 parent 8debf85 commit 500ae0a

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

errata.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626

2727
![P2-20](images/2_20_typo_1.JPG)
2828

29+
## P3-14
30+
31+
![P3-25](images/3_14_typo_1.JPG)
32+
2933
## P3-25
3034

3135
![P3-25](images/3_25_typo_1.JPG)

images/3_14_typo_1.JPG

36.8 KB
Loading

samples/CH03/Basic/src/cc/openhome/Bitwise.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
public class Bitwise {
44
public static void main(String[] args) {
55
System.out.println("AND運算:");
6-
System.out.printf("0 AND 0 %5d%n", 0 & 1);
6+
System.out.printf("0 AND 0 %5d%n", 0 & 0);
77
System.out.printf("0 AND 1 %5d%n", 0 & 1);
88
System.out.printf("1 AND 0 %5d%n", 1 & 0);
99
System.out.printf("1 AND 1 %5d%n", 1 & 1);

0 commit comments

Comments
 (0)