- 
          A Carkeeps track of the starting odometer reading, ending odometer reading, and the number of gallons used between readings.
 
- 
        The initial odometer reading is specified in the constructor. 
- 
      A method calculateMPGcalculates and returns the miles per gallon for the car.
 
- 
      A method fillUpsimulates filling up the tank at a gas station:odometerReadingis the current odometer reading andgallonsis the number of gallons that filled the tank. Save these values in instance variables.
 
- 
      With this information, miles per gallon can be calculated. calculateMPGwill calculate the miles per gallon since the last time resetMPG was called.