package class3_2_InheritanceVehicles;// Dr. Yoder. MSOE. 08 December 2016 public class Racecar extends Vehicle { public Racecar() { super(0); } /** * Describe the car and its location * @return a string representation of the object. */ @Override public String toString() { return "A racecar at "+getNorthMeters()+" meters north"; } }