We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9fb1ef4 + bc92797 commit 7302e62Copy full SHA for 7302e62
ap02/Moire.java
@@ -18,7 +18,7 @@ public static void main(String[] args) {
18
public void paint(Graphics g) {
19
int i = 90;
20
while (i < getWidth()) {
21
- g.drawOval (0, 0, i, i);
+ g.drawOval(0, 0, i, i);
22
i = i + 3;
23
}
24
ch05/Conditional.java
@@ -1,5 +1,3 @@
1
-import java.util.Scanner;
2
-
3
/**
4
* Examples from Chapter 5.
5
*/
ch05/Exercise.java
public static void clink(int fork) {
System.out.print("It's ");
- zoop("breakfast ", fork) ;
+ zoop("breakfast ", fork);
public static void ping(String strangStrung) {
0 commit comments