Java programming
Create a dog runner class which uses a Dog class which you create. Dog class must: 1. Have dog characteristics of Name, Color, Weight 2. Be able to construct a default dog of name “Fido”, color brown and weight 10 (pounds). 2.a. Construct a dog with only name (default brown and 10 pounds). 2.b. Construct a dog with all 3 parameters. 3. Dog must be […]