You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-#### Solution must use Java 8 SE, as this is the version used by the book.
50
+
-#### Every solution should have a java file containing a public main method for testing it.
51
+
-#### Naming convention is: ExerciseCC_EE.java where CC is the chapter number and EE is the exercise number.
52
+
-#### The public Exercise class containing the main method must include a JavaDoc comment on the class with original exercise question.
53
+
-#### Each solution should be its own self-contained program with minimal dependencies on other files. If you need multiple files please create a package for the exercise.
54
+
-#### ch_XX/exercise22_07/Exercise22_07.java
55
+
-#### This allows us to utilize the Exercise Checking Tool [Exercise Checking Tool](https://liveexample.pearsoncmg.com/CheckExercise/faces/CheckExercise.xhtml?chapter=1&programName=Exercise01_01) to verify solutions.
56
+
-### Example exercise solution:
57
+
```java
58
+
packagech_01;
59
+
/**
60
+
* 1.1 (Display three messages) Write a program that displays Welcome to Java,
61
+
* Welcome to Computer Science, and Programming is fun.
62
+
*/
63
+
publicclassExercise01_01 {
64
+
publicstaticvoidmain(String[] args) {
65
+
System.out.println("Welcome to Java");
66
+
System.out.println("Welcome to Computer Science");
67
+
System.out.println("Programming is fun");
68
+
}
69
+
70
+
}
71
+
```
45
72
46
-
## Contribution Guide:
47
73
48
74
### <emid="prs">Pull requests:</em>
49
75
@@ -132,7 +158,7 @@ Indicates 100% completion of all exercises for that chapter
0 commit comments