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