Advertisement
calcpage

C3X5_Car.java

Oct 4th, 2011
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.27 KB | None | 0 0
  1. //Car.java  MrG 2011.1004
  2. public class Car
  3. {
  4.     private double mpg;
  5.     private double tank;
  6.  
  7.     public Car(double mpg)
  8.     {
  9.         this.mpg=mpg;
  10.         this.tank=0;
  11.     }
  12.  
  13.     public double getGasInTank()
  14.     {
  15.         return tank;
  16.     }
  17.  
  18.     public void addGas(double gas)
  19.     {
  20.         tank=tank+gas;
  21.     }
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement