/** Code for a car which can drive, and fill up w/ gas. * @author Ian Barland * @version 2008.Sep.22 */ class CarVersion0 { /* FIELDS GO HERE */ /** Constructor. * @param _mileage The new car's mileage (in miles per gallon). */ /** addGas: Fill up with gas. * @param numGals The number of gallons to add to the tank. */ /** drive: Update this Car's info after driving it. * @param miles The number of miles driven. */ /** getGasInTank: * Return how much gas remains in the tank (in gallons). * @return how much gas remains in the tank (in gallons). */ }