Skip to content

Commit 7302e62

Browse files
committed
2 parents 9fb1ef4 + bc92797 commit 7302e62

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

ap02/Moire.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static void main(String[] args) {
1818
public void paint(Graphics g) {
1919
int i = 90;
2020
while (i < getWidth()) {
21-
g.drawOval (0, 0, i, i);
21+
g.drawOval(0, 0, i, i);
2222
i = i + 3;
2323
}
2424
}

ch05/Conditional.java

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import java.util.Scanner;
2-
31
/**
42
* Examples from Chapter 5.
53
*/

ch05/Exercise.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static void main(String[] args) {
1818

1919
public static void clink(int fork) {
2020
System.out.print("It's ");
21-
zoop("breakfast ", fork) ;
21+
zoop("breakfast ", fork);
2222
}
2323

2424
public static void ping(String strangStrung) {

0 commit comments

Comments
 (0)