jokekid

Untitled

Aug 15th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. public class Car {
  2.     private int wheels;
  3.     private float weight;
  4.     private String model;
  5.    
  6.     public Car(int wheels, float weight, String model){
  7.         this.wheels = wheels;
  8.         this.weight = weight;
  9.         this.model = model;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment