| This portion of Homework 1 is expected to be hand written. A
drawing program can be used instead, but the homework must be turned in
as either a printed copy, a pdf file, or a ps file. |
| class Bird { int age; String color; Bird( int age, String color) { this.age = age; this.color = color; } } |
| class Planet { double avgDistToSun; int population; Planet( double avgDistToSun, int population) { this.avgDistToSun = avgDistToSun; this.population = population; } } |