Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Car {
- private int wheels;
- private float weight;
- private String model;
- public Car(int wheels, float weight, String model){
- this.wheels = wheels;
- this.weight = weight;
- this.model = model;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment