Advertisement
calcpage

C3X5_CarTester.java

Oct 4th, 2011
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. //CarTester.java    MrG 2011.1004
  2. public class CarTester
  3. {
  4.     public static void main(String[] args)
  5.     {
  6.         Car bob = new Car(50);
  7.         bob.addGas(20);
  8.         System.out.println("tank = " + bob.getGasInTank());
  9.     }
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement