Skip to content

Commit 974df57

Browse files
committed
Update Readme
1 parent bca4ce6 commit 974df57

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

README.md

+26-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,30 @@ exercise check tool; They are by no means the only solutions to these
1212
problems and I encourage anyone reading them to try to find new or different
1313
methods of approaching these same problems.
1414

15-
16-
#### About The Book
15+
#### About 10th Edition Intro To Java Programming
1716
"Daniel Liang teaches concepts of problem-solving and object-oriented programming using a fundamentals-first approach. Beginning programmers learn critical problem-solving techniques then move on to grasp the key concepts of object-oriented, GUI programming, advanced GUI and Web programming using Java. Liang approaches Java GUI programming using JavaFX, not only because JavaFX is much simpler for new Java programmers to learn and use but because it has replaced Swing as the new GUI tool for developing cross-platform-rich Internet applications on desktop computers, on hand-held devices, and on the Web. Additionally, for instructors, JavaFXprovides a better teaching tool for demonstrating object-oriented programming."
17+
18+
### Quick Solution Links
19+
<ul>
20+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_01"><strong>Chapter 1</strong></a></li><br>
21+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_02"><strong>Chapter 2</strong></a></li><br>
22+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_03"><strong>Chapter 3</strong></a></li><br>
23+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_04"><strong>Chapter 4</strong></a></li><br>
24+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_05"><strong>Chapter 5</strong></a></li><br>
25+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_06"><strong>Chapter 6</strong></a></li><br>
26+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_07"><strong>Chapter 7</strong></a></li><br>
27+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_08"><strong>Chapter 8</strong></a></li><br>
28+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_09"><strong>Chapter 9</strong></a></li><br>
29+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_10"><strong>Chapter 10</strong></a></li><br>
30+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_11"><strong>Chapter 11</strong></a></li><br>
31+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_12"><strong>Chapter 12</strong></a></li><br>
32+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_13"><strong>Chapter 13</strong></a></li><br>
33+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_14"><strong>Chapter 14</strong></a></li><br>
34+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_15"><strong>Chapter 15</strong></a></li><br>
35+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_16"><strong>Chapter 16</strong></a></li><br>
36+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_17"><strong>Chapter 17</strong></a></li><br>
37+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_18"><strong>Chapter 18</strong></a></li><br>
38+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_19"><strong>Chapter 19</strong></a></li><br>
39+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_20"><strong>Chapter 20</strong></a></li><br>
40+
<li><a href="https://github.com/HarryDulaney/java-programming-daniel-liang-10th/tree/master/src/ch_21"><strong>Chapter 21</strong></a></li><br>
41+
</ul>

src/ch_03/E0328.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99
import java.util.*;
1010

11-
public class Ex3_28 {
11+
public class E0328 {
1212
public static void main(String[] args) {
1313
//This program only tests if rectangle two is inside rectangle one or if
1414
//rectangle two overlaps rectangle one per the instructions

src/ch_03/E0329.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
program to cover all cases.)
1010
*/
1111

12-
public class Ex3_29 {
12+
public class E0329 {
1313

1414
}

0 commit comments

Comments
 (0)