@@ -14,6 +14,9 @@ INSTRUCTIONS
1414 * We will review the homework and any questions you may have about the
1515 assignment at the beginning of class 2.
1616
17+ * When finished with the main assignment, commit your changes using the
18+ desktop client and push your work to your github account.
19+
1720HOMEWORK
1821
1922 1. Add another penguin to the zoo by adding an entry to the penguin array.
@@ -27,24 +30,21 @@ HOMEWORK
2730 3. When a penguin swims, it loses five pounds. Update the class to reflect
2831 this behavior.
2932
30- OBJECTIVES
33+ 4. A penguin dies when it weighs 0 pounds. Add a function to check the weight
34+ before a penguin swims. Add a way to track if a penguin is dead.
3135
32- * Become familiar with IntelliJ.
33- * Practice with Java variables, functions, arrays, math operations,
34- and objects.
35- * Become comfortable with github, checking out a repository, and pushing
36- changes to github.com.
36+ 5. Add an aquarium to hold fish.
3737
38- EXTRA CREDIT
38+ 6. Add three fish to the aquarium.
3939
40- 1. When finished with the main assignment, commit your changes and push your
41- work to your github account.
40+ 7. Add the aquarium to the zoo and add print statements to describe it.
4241
43- 2. A penguin dies when it weighs 0 pounds. Add a function to check the weight
44- before a penguin swims. Add a way to track if a penguin is dead.
42+ OBJECTIVES
4543
46- 3. Add an aquarium to hold fish .
44+ * Become familiar with IntelliJ .
4745
48- 4. Add three fish to the aquarium.
46+ * Practice with Java variables, functions, arrays, math operations,
47+ and objects.
4948
50- 5. Add the aquarium to the zoo and add print statements to describe it.
49+ * Become comfortable with github, checking out a repository, and pushing
50+ changes to github.com.