Homework Statement
Suppose that you are given the following PetDriver class, which includes a main method:
public class PetDriver{
public static void main(String[] args){
int weight = 40;
Pet doggie = new Pet("Rover", weight);
System.out.println("my pet's name is "...