// // P.267 // Name: DogDemo.java // Goal: Use Dog.class // // public class DogDemo { public static void main(String[] args) { Dog balto = new Dog(); balto.name = "Balto"; balto.age = 8; balto.breed = "Siberian Husky"; balto.writeOutput(); // input your pet info Dog bobo = new Dog(); bobo.name = "Bobo"; bobo.age = 10; bobo.breed = "Nice boy"; bobo.writeOutput(); // book case Dog scooby = new Dog(); scooby.name = "Scooby"; scooby.age = 42; scooby.breed = "Great Dane"; scooby.writeOutput(); } }