Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 390cbbe commit bc92797Copy full SHA for bc92797
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